Cheetah
categories.php
Go to the documentation of this file.
1 <?php
2 
8 define ('CH_SECURITY_EXCEPTIONS', true);
9 
10 require_once( '../inc/header.inc.php' );
11 require_once( CH_DIRECTORY_PATH_INC . 'profiles.inc.php' );
12 require_once( CH_DIRECTORY_PATH_INC . 'design.inc.php' );
13 require_once( CH_DIRECTORY_PATH_INC . 'admin_design.inc.php' );
14 require_once( CH_DIRECTORY_PATH_INC . 'utils.inc.php' );
15 ch_import('ChWsbDb');
16 ch_import('ChTemplSearchResult');
17 ch_import('ChWsbCategories');
18 ch_import('ChWsbAdminSettings');
19 
21 if (ch_get('pathes') !== false) {
22  $aPathes = ch_get('pathes');
23 
24  if(is_array($aPathes))
25  for ($i=0; $i<count($aPathes); ++$i) {
26  $aChSecurityExceptions[] = 'POST.pathes.'.$i;
27  $aChSecurityExceptions[] = 'REQUEST.pathes.'.$i;
28  }
29 }
30 
31 $logged['admin'] = member_auth( 1, true, true );
32 
34 {
36 
37  // check actions
38  if(ch_get('pathes') !== false) {
39  $aPathes = ch_get('pathes');
40 
41  if(is_array($aPathes) && !empty($aPathes))
42  foreach($_POST['pathes'] as $sValue) {
43  list($sCategory, $sId, $sType) = explode('%%', process_db_input($sValue, CH_TAGS_STRIP));
44  if (ch_get('action_disable') !== false)
45  $oDb->query("UPDATE `sys_categories` SET `Status` = 'passive' WHERE
46  `Category` = '$sCategory' AND `ID` = " . (int)$sId . " AND `Type` = '$sType'");
47  else if(ch_get('action_delete') !== false)
48  $oDb->query("DELETE FROM `sys_categories` WHERE
49  `Category` = '$sCategory' AND `ID` = " . (int)$sId . " AND `Type` = '$sType'");
50  }
51  }
52 
53  $aModules = array();
54  $oCategories = new ChWsbCategories();
55  $oCategories->getTagObjectConfig();
56 
57  if(empty($oCategories->aTagObjects))
58  return MsgBox(_t('_Empty'));
59 
60  $sModule = ch_get('module') !== false ? ch_get('module') : '';
61  foreach($oCategories->aTagObjects as $sKey => $aValue) {
62  if(!$sModule)
63  $sModule = $sKey;
64 
65  $aModules[] = array(
66  'value' => $sKey,
67  'caption' => _t($aValue['LangKey']),
68  'selected' => $sKey == $sModule ? 'selected="selected"' : ''
69  );
70  }
71 
72  $sTopControls = $GLOBALS['oAdmTemplate']->parseHtmlByName('categories_list_top_controls.html', array(
73  'name' => _t('_categ_modules'),
74  'ch_repeat:items' => $aModules,
75  'location_href' => CH_WSB_URL_ADMIN . 'categories.php?action=all&module='
76  ));
77 
78  $aCategories = $oDb->getAll("SELECT * FROM `sys_categories` WHERE `Status` = 'active' AND `Owner` = 0 AND `Type` = ?", [$sModule]);
79  if(!empty($aCategories)) {
80  $mixedTmplItems = array();
81  foreach($aCategories as $aCategory)
82  $mixedTmplItems[] = array(
83  'name' => ch_html_attribute($aCategory['Category']),
84  'value' => ch_html_attribute($aCategory['Category']) . '%%' . $aCategory['ID'] . '%%' . $aCategory['Type'],
85  'title'=> $aCategory['Category'],
86  );
87  } else
88  $mixedTmplItems = MsgBox(_t('_Empty'));
89 
90  $sFormName = 'categories_form';
91  $sControls = $sControls = ChTemplSearchResult::showAdminActionsPanel($sFormName, array(
92  'action_disable' => _t('_categ_btn_disable'),
93  'action_delete' => _t('_categ_btn_delete')
94  ), 'pathes');
95 
96  $sContent = $GLOBALS['oAdmTemplate']->parseHtmlByName('categories_list.html', array(
97  'top_controls' => $sTopControls,
98  'form_name' => $sFormName,
99  'ch_repeat:items' => $mixedTmplItems,
100  'controls' => $sControls
101  ));
102 
103  return $sContent;
104 }
105 
106 function actionPending()
107 {
109  $sFormName = 'categories_aprove_form';
110  $aItems = array();
111 
112  if(is_array($_POST['pathes']) && !empty($_POST['pathes'])) {
113  foreach($_POST['pathes'] as $sValue) {
114  list($sCategory, $sId, $sType) = explode('%%', process_db_input($sValue, CH_TAGS_STRIP));
115  $oDb->query("UPDATE `sys_categories` SET `Status` = 'active' WHERE
116  `Category` = '$sCategory' AND `ID` = '$sId' AND `Type` = '$sType'");
117  }
118  }
119 
120  $aCategories = $oDb->getAll("SELECT * FROM `sys_categories` WHERE `Status` = 'passive'");
121 
122  if (!empty($aCategories)) {
123  foreach($aCategories as $aCategory) {
124  $aItems[] = array(
125  'name' => ch_html_attribute($aCategory['Category']),
126  'value' => ch_html_attribute($aCategory['Category']) . '%%' . $aCategory['ID'] . '%%' . $aCategory['Type'],
127  'title'=> $aCategory['Category'] . '(' . $aCategory['Type'] . ')',
128  );
129  }
130 
131  $aButtons = array(
132  'action_activate' => _t('_categ_btn_activate'),
133  );
134  $sControls = ChTemplSearchResult::showAdminActionsPanel($sFormName, $aButtons, 'pathes');
135 
136  return $GLOBALS['oAdmTemplate']->parseHtmlByName('categories_list.html', array(
137  'form_name' => $sFormName,
138  'ch_repeat:items' => $aItems,
139  'controls' => $sControls
140  ));
141  } else
142  return MsgBox(_t('_Empty'));
143 }
144 
145 function actionSettings()
146 {
147  $oSettings = new ChWsbAdminSettings(27);
148 
149  $mixedResult = '';
150  if(isset($_POST['save']) && isset($_POST['cat']))
151  $mixedResult = $oSettings->saveChanges($_POST);
152 
153  $sResult = $GLOBALS['oAdmTemplate']->parseHtmlByName('design_box_content.html', array('content' => $oSettings->getForm()));
154 
155  if($mixedResult !== true && !empty($mixedResult))
156  $sResult = $mixedResult . $sResult;
157 
158  return $sResult;
159 }
160 
161 function getCategoryForm()
162 {
163  $oCateg = new ChWsbCategories();
164  $aTypes = array();
165  $oCateg->getTagObjectConfig();
166 
167  foreach ($oCateg->aTagObjects as $sKey => $aValue)
168  $aTypes[$sKey] = _t($aValue[$oCateg->aObjFields['lang_key']]);
169 
170  $aForm = array(
171 
172  'form_attrs' => array(
173  'name' => 'category_form',
174  'action' => $_SERVER['REQUEST_URI'],
175  'method' => 'post',
176  'enctype' => 'multipart/form-data',
177  ),
178 
179  'params' => array (
180  'db' => array(
181  'table' => 'sys_categories',
182  'submit_name' => 'submit_form'
183  ),
184  ),
185 
186  'inputs' => array(
187 
188  'name' => array(
189  'type' => 'text',
190  'name' => 'Category',
191  'value' => isset($aUnit['name']) ? $aUnit['name'] : '',
192  'caption' => _t('_categ_form_name'),
193  'required' => true,
194  'checker' => array (
195  'func' => 'length',
196  'params' => array(3, 100),
197  'error' => _t('_categ_form_field_name_err'),
198  ),
199  'db' => array(
200  'pass' => 'Xss'
201  ),
202  'display' => true,
203  ),
204  'type' => array(
205  'type' => 'select',
206  'name' => 'Type',
207  'required' => true,
208  'values' => $aTypes,
209  'value' => ch_get('module') !== false ? ch_get('module') : '',
210  'caption' => _t('_categ_form_type'),
211  'attrs' => array(
212  'multiplyable' => false
213  ),
214  'display' => true,
215  'db' => array(
216  'pass' => 'Xss'
217  ),
218  ),
219  'submit' => array (
220  'type' => 'submit',
221  'name' => 'submit_form',
222  'value' => _t('_Submit'),
223  'colspan' => false,
224  ),
225  )
226  );
227 
228  return new ChTemplFormView($aForm);
229 }
230 
232 {
234  $oForm->initChecker();
235  $sResult = '';
236 
237  if ($oForm->isSubmittedAndValid()) {
239  if ($oDb->getOne("SELECT COUNT(*) FROM `sys_categories` WHERE `Category` = '" . $oForm->getCleanValue('Category') . "' AND `ID` = 0 AND `Type` = '" . $oForm->getCleanValue('Type') . "'") == 0) {
240  $aValsAdd = array (
241  'ID' => 0,
242  'Owner' => 0,
243  'Status' => 'active',
244  );
245 
246  $oForm->insert($aValsAdd);
247  header('Location:' . CH_WSB_URL_ADMIN . 'categories.php?action=all&module=' . $oForm->getCleanValue('Type'));
248  } else
249  $sResult = sprintf(_t('_categ_exist_err'), $oForm->getCleanValue('Category'));
250  }
251 
252  return (strlen($sResult) > 0 ? MsgBox($sResult) : '') .
253  $GLOBALS['oAdmTemplate']->parseHtmlByName('design_box_content.html', array('content' => $oForm->getCode()));
254 }
255 
257 $aMenu = array(
258  'all' => array(
259  'title' => _t('_categ_all'),
260  'href' => $GLOBALS['site']['url_admin'] . 'categories.php?action=all',
261  '_func' => array ('name' => 'actionAllCategories', 'params' => array()),
262  ),
263  'pending' => array(
264  'title' => _t('_categ_admin_pending'),
265  'href' => $GLOBALS['site']['url_admin'] . 'categories.php?action=pending',
266  '_func' => array ('name' => 'actionPending', 'params' => array()),
267  ),
268  'settings' => array(
269  'title' => _t('_categ_admin_settings'),
270  'href' => $GLOBALS['site']['url_admin'] . 'categories.php?action=settings',
271  '_func' => array ('name' => 'actionSettings', 'params' => array()),
272  ),
273 );
274 $sAction = ch_get('action') !== false ? ch_get('action') : 'all';
275 $aMenu[$sAction]['active'] = 1;
276 $sContent = call_user_func_array($aMenu[$sAction]['_func']['name'], $aMenu[$sAction]['_func']['params']);
277 
278 $_page = array(
279  'name_index' => $iNameIndex,
280  'css_name' => array('forms_adv.css', 'settings.css', 'categories.css'),
281  'header' => _t('_CategoriesSettings'),
282 );
283 
284 $_page_cont[$iNameIndex]['page_main_code'] = DesignBoxAdmin(_t('_categ_form_add'), getAddCategoryForm()) .
286 
287 PageCodeAdmin();
process_db_input
process_db_input($sText, $iStripTags=0)
Definition: utils.inc.php:256
header
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
Definition: URI.MungeResources.txt:10
$oSettings
$oSettings
Definition: advanced_settings.php:20
ChTemplFormView
Definition: ChTemplFormView.php:11
MsgBox
MsgBox($sText, $iTimer=0)
Definition: design.inc.php:175
getCategoryForm
getCategoryForm()
Definition: categories.php:161
$aUnit
$aUnit
Definition: short_profile_info.php:31
$sResult
$sResult
Definition: advanced_settings.php:26
ch_import
ch_import($sClassName, $aModule=array())
Definition: utils.inc.php:1218
ch_get
ch_get($sName)
Definition: utils.inc.php:1664
php
actionAllCategories
actionAllCategories()
Definition: categories.php:33
$_page
$_page
Definition: categories.php:278
$logged
if(ch_get('pathes') !==false) $logged['admin']
Definition: categories.php:31
$sModule
if(!file_exists($sRayHeaderPath)) $sModule
Definition: index.php:14
actionPending
actionPending()
Definition: categories.php:106
ChWsbCategories
Definition: ChWsbCategories.php:13
ch_html_attribute
ch_html_attribute($mixedInput)
Definition: utils.inc.php:1324
$oForm
$oForm
Definition: host_tools.php:42
DesignBoxAdmin
DesignBoxAdmin($sTitle, $sContent, $mixedTopItems='', $sBottomItems='', $iIndex=1)
Definition: admin_design.inc.php:50
$sType
$sType
Definition: actions.inc.php:11
$oDb
global $oDb
Definition: db.inc.php:39
$aChSecurityExceptions
$aChSecurityExceptions
Definition: categories.php:20
PageCodeAdmin
PageCodeAdmin($oTemplate=null)
Definition: admin_design.inc.php:45
_t
_t($key, $arg0="", $arg1="", $arg2="")
Definition: languages.inc.php:509
getAddCategoryForm
getAddCategoryForm()
Definition: categories.php:231
member_auth
member_auth($member=0, $error_handle=true, $bAjx=false)
Definition: admin.inc.php:262
actionSettings
actionSettings()
Definition: categories.php:145
$aMenu
$aMenu
Definition: categories.php:257
ChWsbAdminSettings
Definition: ChWsbAdminSettings.php:35
CH_TAGS_STRIP
const CH_TAGS_STRIP
Definition: utils.inc.php:22
$aModules
$aModules
Definition: constants.inc.php:29
$_page_cont
$_page_cont[$iNameIndex]['page_main_code']
Definition: categories.php:284
$sId
$sId
Definition: actions.inc.php:8
$iNameIndex
$iNameIndex
Definition: categories.php:256
$aForm
$aForm
Definition: forgot.php:43
ChBaseSearchResult\showAdminActionsPanel
static showAdminActionsPanel($sWrapperId, $aButtons, $sCheckboxName='entry', $bSelectAll=true, $bSelectAllChecked=false, $sCustomHtml='')
Definition: ChBaseSearchResult.php:81
$sContent
$sContent
Definition: categories.php:276
$sAction
$sAction
Definition: categories.php:274
empty
Attr AllowedRel this is empty
Definition: Attr.AllowedRel.txt:7
as
as
Definition: Filter.ExtractStyleBlocks.Escaping.txt:10
ChWsbDb\getInstance
static getInstance()
Definition: ChWsbDb.php:82
$GLOBALS
$GLOBALS['iAdminPage']
Definition: advanced_settings.php:10