本文整理汇总了PHP中osCommerce\OM\Core\ApplicationAbstract::getCurrentCategoryID方法的典型用法代码示例。如果您正苦于以下问题:PHP ApplicationAbstract::getCurrentCategoryID方法的具体用法?PHP ApplicationAbstract::getCurrentCategoryID怎么用?PHP ApplicationAbstract::getCurrentCategoryID使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类osCommerce\OM\Core\ApplicationAbstract
的用法示例。
在下文中一共展示了ApplicationAbstract::getCurrentCategoryID方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: execute
public static function execute(ApplicationAbstract $application)
{
$data = array('name' => $_POST['categories_name'], 'image' => isset($_POST['cImageSelected']) ? $_POST['cImageSelected'] : null, 'parent_id' => $_POST['parent_id']);
if (Categories::save(isset($_GET['id']) && is_numeric($_GET['id']) ? $_GET['id'] : null, $data)) {
Registry::get('MessageStack')->add(null, OSCOM::getDef('ms_success_action_performed'), 'success');
} else {
Registry::get('MessageStack')->add(null, OSCOM::getDef('ms_error_action_not_performed'), 'error');
}
OSCOM::redirect(OSCOM::getLink(null, null, 'cid=' . $application->getCurrentCategoryID()));
}