Go to the documentation of this file.
8 define (
'CH_SECURITY_EXCEPTIONS',
true);
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' );
21 if (
ch_get(
'pathes') !==
false) {
22 $aPathes =
ch_get(
'pathes');
24 if(is_array($aPathes))
25 for ($i=0; $i<count($aPathes); ++$i) {
38 if(
ch_get(
'pathes') !==
false) {
39 $aPathes =
ch_get(
'pathes');
41 if(is_array($aPathes) && !
empty($aPathes))
42 foreach($_POST[
'pathes']
as $sValue) {
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'");
55 $oCategories->getTagObjectConfig();
57 if(
empty($oCategories->aTagObjects))
61 foreach($oCategories->aTagObjects
as $sKey => $aValue) {
67 'caption' =>
_t($aValue[
'LangKey']),
68 'selected' => $sKey ==
$sModule ?
'selected="selected"' :
''
72 $sTopControls =
$GLOBALS[
'oAdmTemplate']->parseHtmlByName(
'categories_list_top_controls.html', array(
73 'name' =>
_t(
'_categ_modules'),
75 'location_href' => CH_WSB_URL_ADMIN .
'categories.php?action=all&module='
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(
84 'value' =>
ch_html_attribute($aCategory[
'Category']) .
'%%' . $aCategory[
'ID'] .
'%%' . $aCategory[
'Type'],
85 'title'=> $aCategory[
'Category'],
88 $mixedTmplItems =
MsgBox(
_t(
'_Empty'));
90 $sFormName =
'categories_form';
92 'action_disable' =>
_t(
'_categ_btn_disable'),
93 'action_delete' =>
_t(
'_categ_btn_delete')
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
109 $sFormName =
'categories_aprove_form';
112 if(is_array($_POST[
'pathes']) && !
empty($_POST[
'pathes'])) {
113 foreach($_POST[
'pathes']
as $sValue) {
115 $oDb->query(
"UPDATE `sys_categories` SET `Status` = 'active' WHERE
116 `Category` = '$sCategory' AND `ID` = '$sId' AND `Type` = '$sType'");
120 $aCategories =
$oDb->getAll(
"SELECT * FROM `sys_categories` WHERE `Status` = 'passive'");
122 if (!
empty($aCategories)) {
123 foreach($aCategories
as $aCategory) {
126 'value' =>
ch_html_attribute($aCategory[
'Category']) .
'%%' . $aCategory[
'ID'] .
'%%' . $aCategory[
'Type'],
127 'title'=> $aCategory[
'Category'] .
'(' . $aCategory[
'Type'] .
')',
132 'action_activate' =>
_t(
'_categ_btn_activate'),
136 return $GLOBALS[
'oAdmTemplate']->parseHtmlByName(
'categories_list.html', array(
137 'form_name' => $sFormName,
138 'ch_repeat:items' => $aItems,
139 'controls' => $sControls
150 if(isset($_POST[
'save']) && isset($_POST[
'cat']))
151 $mixedResult =
$oSettings->saveChanges($_POST);
155 if($mixedResult !==
true && !
empty($mixedResult))
165 $oCateg->getTagObjectConfig();
167 foreach ($oCateg->aTagObjects
as $sKey => $aValue)
168 $aTypes[$sKey] =
_t($aValue[$oCateg->aObjFields[
'lang_key']]);
172 'form_attrs' => array(
173 'name' =>
'category_form',
174 'action' => $_SERVER[
'REQUEST_URI'],
176 'enctype' =>
'multipart/form-data',
181 'table' =>
'sys_categories',
182 'submit_name' =>
'submit_form'
190 'name' =>
'Category',
192 'caption' =>
_t(
'_categ_form_name'),
196 'params' => array(3, 100),
197 'error' =>
_t(
'_categ_form_field_name_err'),
209 'value' =>
ch_get(
'module') !==
false ?
ch_get(
'module') :
'',
210 'caption' =>
_t(
'_categ_form_type'),
212 'multiplyable' =>
false
221 'name' =>
'submit_form',
222 'value' =>
_t(
'_Submit'),
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) {
243 'Status' =>
'active',
246 $oForm->insert($aValsAdd);
247 header(
'Location:' . CH_WSB_URL_ADMIN .
'categories.php?action=all&module=' .
$oForm->getCleanValue(
'Type'));
249 $sResult = sprintf(
_t(
'_categ_exist_err'),
$oForm->getCleanValue(
'Category'));
253 $GLOBALS[
'oAdmTemplate']->parseHtmlByName(
'design_box_content.html', array(
'content' =>
$oForm->getCode()));
259 'title' =>
_t(
'_categ_all'),
260 'href' =>
$GLOBALS[
'site'][
'url_admin'] .
'categories.php?action=all',
261 '_func' => array (
'name' =>
'actionAllCategories',
'params' => array()),
264 'title' =>
_t(
'_categ_admin_pending'),
265 'href' =>
$GLOBALS[
'site'][
'url_admin'] .
'categories.php?action=pending',
266 '_func' => array (
'name' =>
'actionPending',
'params' => array()),
269 'title' =>
_t(
'_categ_admin_settings'),
270 'href' =>
$GLOBALS[
'site'][
'url_admin'] .
'categories.php?action=settings',
271 '_func' => array (
'name' =>
'actionSettings',
'params' => array()),
280 'css_name' => array(
'forms_adv.css',
'settings.css',
'categories.css'),
281 'header' =>
_t(
'_CategoriesSettings'),
process_db_input($sText, $iStripTags=0)
</code > Be careful enabling this directive if you have a redirector script that does not use the< code > Location</code > HTTP header
MsgBox($sText, $iTimer=0)
ch_import($sClassName, $aModule=array())
if(ch_get('pathes') !==false) $logged['admin']
if(!file_exists($sRayHeaderPath)) $sModule
ch_html_attribute($mixedInput)
DesignBoxAdmin($sTitle, $sContent, $mixedTopItems='', $sBottomItems='', $iIndex=1)
PageCodeAdmin($oTemplate=null)
_t($key, $arg0="", $arg1="", $arg2="")
member_auth($member=0, $error_handle=true, $bAjx=false)
$_page_cont[$iNameIndex]['page_main_code']
static showAdminActionsPanel($sWrapperId, $aButtons, $sCheckboxName='entry', $bSelectAll=true, $bSelectAllChecked=false, $sCustomHtml='')
Attr AllowedRel this is empty