$categoryId_1 = PMF_Filter::filterInput(INPUT_POST, 'cat', FILTER_VALIDATE_INT);
     $categoryId_2 = PMF_Filter::filterInput(INPUT_POST, 'change', FILTER_VALIDATE_INT);
     if ($category->swapCategories($categoryId_1, $categoryId_2)) {
         printf('<p class="alert alert-success">%s</p>', $PMF_LANG['ad_categ_updated']);
     } else {
         printf('<p class="alert alert-error">%s<br />%s</p>', $PMF_LANG['ad_categ_paste_error'], $faqConfig->getDb()->error());
     }
 }
 // Pastes a category
 if ($action == 'pastecategory') {
     $category = new PMF_Category($faqConfig, array(), false);
     $category->setUser($currentAdminUser);
     $category->setGroups($currentAdminGroups);
     $categoryId = PMF_Filter::filterInput(INPUT_POST, 'cat', FILTER_VALIDATE_INT);
     $parentId = PMF_Filter::filterInput(INPUT_POST, 'after', FILTER_VALIDATE_INT);
     if ($category->updateParentCategory($categoryId, $parentId)) {
         printf('<p class="alert alert-success">%s</p>', $PMF_LANG['ad_categ_updated']);
     } else {
         printf('<p class="alert alert-error">%s<br />%s</p>', $PMF_LANG['ad_categ_paste_error'], $faqConfig->getDb()->error());
     }
 }
 // Lists all categories
 $lang = PMF_Filter::filterInput(INPUT_POST, 'lang', FILTER_SANITIZE_STRING, $LANGCODE);
 // If we changed the category tree, unset the object
 if (isset($category)) {
     unset($category);
 }
 $category = new PMF_Category($faqConfig, array(), false);
 $category->setUser($currentAdminUser);
 $category->setGroups($currentAdminGroups);
 $category->getMissingCategories();
예제 #2
0
 if ($action == 'changecategory') {
     $category = new PMF_Category($current_admin_user, $current_admin_groups, false);
     $category_id_1 = PMF_Filter::filterInput(INPUT_POST, 'cat', FILTER_VALIDATE_INT);
     $category_id_2 = PMF_Filter::filterInput(INPUT_POST, 'change', FILTER_VALIDATE_INT);
     if ($category->swapCategories($category_id_1, $category_id_2)) {
         printf('<p class="success">%s</p>', $PMF_LANG['ad_categ_updated']);
     } else {
         printf('<p class="error">%s<br />%s</p>', $PMF_LANG['ad_categ_paste_error'], $db->error());
     }
 }
 // Pastes a category
 if ($action == 'pastecategory') {
     $category = new PMF_Category($current_admin_user, $current_admin_groups, false);
     $category_id = PMF_Filter::filterInput(INPUT_POST, 'cat', FILTER_VALIDATE_INT);
     $parent_id = PMF_Filter::filterInput(INPUT_POST, 'after', FILTER_VALIDATE_INT);
     if ($category->updateParentCategory($category_id, $parent_id)) {
         printf('<p class="success">%s</p>', $PMF_LANG['ad_categ_updated']);
     } else {
         printf('<p class="error">%s<br />%s</p>', $PMF_LANG['ad_categ_paste_error'], $db->error());
     }
 }
 // Lists all categories
 $lang = PMF_Filter::filterInput(INPUT_POST, 'lang', FILTER_SANITIZE_STRING, $LANGCODE);
 // If we changed the category tree, unset the object
 if (isset($category)) {
     unset($category);
 }
 $category = new PMF_Category($current_admin_user, $current_admin_groups, false);
 $category->getMissingCategories();
 $category->buildTree();
 $open = $lastCatId = $openDiv = 0;