本文整理汇总了PHP中PMF_Category::updateParentCategory方法的典型用法代码示例。如果您正苦于以下问题:PHP PMF_Category::updateParentCategory方法的具体用法?PHP PMF_Category::updateParentCategory怎么用?PHP PMF_Category::updateParentCategory使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PMF_Category
的用法示例。
在下文中一共展示了PMF_Category::updateParentCategory方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: printf
$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: printf
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;