本文整理汇总了PHP中PMF_Category::swapCategories方法的典型用法代码示例。如果您正苦于以下问题:PHP PMF_Category::swapCategories方法的具体用法?PHP PMF_Category::swapCategories怎么用?PHP PMF_Category::swapCategories使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PMF_Category
的用法示例。
在下文中一共展示了PMF_Category::swapCategories方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: strtolower
$deleteall = PMF_Filter::filterInput(INPUT_POST, 'deleteall', FILTER_SANITIZE_STRING);
$delete_all = strtolower($deleteall) == 'yes' ? true : false;
if ($category->deleteCategory($id, $lang, $delete_all) && $category->deleteCategoryRelation($id, $lang, $delete_all) && $category->deletePermission('user', array($id)) && $category->deletePermission('group', array($id))) {
printf('<p class="alert alert-success">%s</p>', $PMF_LANG['ad_categ_deleted']);
} else {
printf('<p class="alert alert-error">%s</p>', $faqConfig->getDb()->error());
}
}
// Moves a category
if ($action == 'changecategory') {
$category = new PMF_Category($faqConfig, array(), false);
$category->setUser($currentAdminUser);
$category->setGroups($currentAdminGroups);
$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 {