本文整理匯總了PHP中ContentController::redirect方法的典型用法代碼示例。如果您正苦於以下問題:PHP ContentController::redirect方法的具體用法?PHP ContentController::redirect怎麽用?PHP ContentController::redirect使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類ContentController
的用法示例。
在下文中一共展示了ContentController::redirect方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
* See COPYRIGHT.php for copyright notices and details.
*/
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once JPATH_COMPONENT . DS . 'controller.php';
require_once JPATH_COMPONENT . DS . 'helper.php';
require_once JApplicationHelper::getPath('admin_html');
// Set the helper directory
JHTML::addIncludePath(JPATH_COMPONENT . DS . 'helper');
$controller = new ContentController();
$task = JRequest::getCmd('task');
switch (strtolower($task)) {
case 'element':
case 'wizard':
$controller->execute($task);
$controller->redirect();
break;
case 'add':
case 'new':
ContentController::editContent(false);
break;
case 'edit':
ContentController::editContent(true);
break;
case 'go2menu':
case 'go2menuitem':
case 'resethits':
case 'menulink':
case 'apply':
case 'save':
ContentController::saveContent();
示例2: submitForm
/**
* @param array $data
* @param ConsoleForm $form
* @param SS_HTTPRequest $request
*/
public function submitForm($data, ConsoleForm $form, SS_HTTPRequest $request)
{
//TODO : do something with data or form
return $this->controller->redirect('/console/index/' . $data['Name']);
}