當前位置: 首頁>>代碼示例>>PHP>>正文


PHP ModulesHelper::addSubmenu方法代碼示例

本文整理匯總了PHP中ModulesHelper::addSubmenu方法的典型用法代碼示例。如果您正苦於以下問題:PHP ModulesHelper::addSubmenu方法的具體用法?PHP ModulesHelper::addSubmenu怎麽用?PHP ModulesHelper::addSubmenu使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在ModulesHelper的用法示例。


在下文中一共展示了ModulesHelper::addSubmenu方法的7個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: display

 /**
  * Method to display a view.
  *
  * @param	boolean			If true, the view output will be cached
  * @param	array			An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
  *
  * @return	JController		This object to support chaining.
  * @since	1.5
  */
 public function display($cachable = false, $urlparams = false)
 {
     require_once JPATH_COMPONENT . '/helpers/modules.php';
     // Load the submenu.
     ModulesHelper::addSubmenu($this->input->get('view', 'modules'));
     $view = $this->input->get('view', 'modules');
     $layout = $this->input->get('layout', 'default');
     $id = $this->input->getInt('id');
     // Check for edit form.
     if ($view == 'module' && $layout == 'edit') {
         if (!$this->checkEditId('com_advancedmodules.edit.module', $id)) {
             // Somehow the person just went to the form - we don't allow that.
             $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id));
             $this->setMessage($this->getError(), 'error');
             $this->setRedirect(JRoute::_('index.php?option=com_advancedmodules&view=modules', false));
             return false;
         }
         // Check general edit permission first.
         if (!JFactory::getUser()->authorise('core.edit', 'com_advancedmodules.module.' . $id)) {
             $this->setError(JText::_('JLIB_APPLICATION_ERROR_BATCH_CANNOT_EDIT'));
             $this->setMessage($this->getError(), 'error');
             $this->setRedirect(JRoute::_('index.php?option=com_advancedmodules&view=modules', false));
             return false;
         }
     }
     parent::display();
 }
開發者ID:AxelFG,項目名稱:ckbran-inf,代碼行數:36,代碼來源:controller.php

示例2: display

 /**
  * Method to display a view.
  *
  * @param   boolean       $cachable  If true, the view output will be cached
  * @param   array|boolean $urlparams An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}
  *
  * @return  JController    This object to support chaining.
  *
  * @since   1.5
  */
 public function display($cachable = false, $urlparams = false)
 {
     $view = $this->input->get('view', 'modules');
     $layout = $this->input->get('layout', 'default');
     $id = $this->input->getInt('id');
     $document = JFactory::getDocument();
     // For JSON requests
     if ($document->getType() == 'json') {
         $view = new ModulesViewModule();
         // Get/Create the model
         if ($model = new ModulesModelModule()) {
             // Checkin table entry
             if (!$model->checkout($id)) {
                 JFactory::getApplication()->enqueueMessage(JText::_('JLIB_APPLICATION_ERROR_CHECKIN_USER_MISMATCH'), 'error');
                 return false;
             }
             // Push the model into the view (as default)
             $view->setModel($model, true);
         }
         $view->document = $document;
         return $view->display();
     }
     require_once JPATH_COMPONENT . '/helpers/modules.php';
     // Load the submenu.
     ModulesHelper::addSubmenu($this->input->get('view', 'modules'));
     return parent::display();
 }
開發者ID:knigherrant,項目名稱:decopatio,代碼行數:37,代碼來源:controller.php

示例3: display

 /**
  * Method to display a view.
  *
  * @param   boolean        $cachable   If true, the view output will be cached
  * @param   array|boolean  $urlparams  An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}
  *
  * @return  JController    This object to support chaining.
  *
  * @since   1.5
  */
 public function display($cachable = false, $urlparams = false)
 {
     $id = $this->input->getInt('id');
     $document = JFactory::getDocument();
     // For JSON requests
     if ($document->getType() == 'json') {
         $view = new ModulesViewModule();
         // Get/Create the model
         if ($model = new ModulesModelModule()) {
             // Checkin table entry
             if (!$model->checkout($id)) {
                 JFactory::getApplication()->enqueueMessage(JText::_('JLIB_APPLICATION_ERROR_CHECKIN_USER_MISMATCH'), 'error');
                 return false;
             }
             // Push the model into the view (as default)
             $view->setModel($model, true);
         }
         $view->document = $document;
         return $view->display();
     }
     JLoader::register('ModulesHelper', JPATH_ADMINISTRATOR . '/components/com_modules/helpers/modules.php');
     $layout = $this->input->get('layout', 'edit');
     $id = $this->input->getInt('id');
     // Check for edit form.
     if ($layout == 'edit' && !$this->checkEditId('com_modules.edit.module', $id)) {
         // Somehow the person just went to the form - we don't allow that.
         $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id));
         $this->setMessage($this->getError(), 'error');
         $this->setRedirect(JRoute::_('index.php?option=com_modules&view=modules', false));
         return false;
     }
     // Load the submenu.
     ModulesHelper::addSubmenu($this->input->get('view', 'modules'));
     return parent::display();
 }
開發者ID:adjaika,項目名稱:J3Base,代碼行數:45,代碼來源:controller.php

示例4: display

 /**
 * Method to display a view.
 *
 * @param   boolean         $cachable       If true, the view output will be cached
 * @param   array|boolean   $urlparams      An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}
 	.
 *
 * @return  JController        This object to support chaining.
 * @since   1.5
 */
 public function display($cachable = false, $urlparams = false)
 {
     require_once JPATH_COMPONENT . '/helpers/modules.php';
     // Load the submenu.
     ModulesHelper::addSubmenu($this->input->get('view', 'modules'));
     $view = $this->input->get('view', 'modules');
     $layout = $this->input->get('layout', 'default');
     $id = $this->input->getInt('id');
     return parent::display();
 }
開發者ID:WineWorld,項目名稱:joomlatrialcmbg,代碼行數:20,代碼來源:controller.php

示例5: display

 /**
  * Method to display a view.
  *
  * @param	boolean			If true, the view output will be cached
  * @param	array			An array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
  *
  * @return	JController		This object to support chaining.
  * @since	1.5
  */
 public function display($cachable = false, $urlparams = false)
 {
     require_once JPATH_COMPONENT . '/helpers/modules.php';
     // Load the submenu.
     ModulesHelper::addSubmenu(JRequest::getCmd('view', 'modules'));
     $view = JRequest::getCmd('view', 'modules');
     $layout = JRequest::getCmd('layout', 'default');
     $id = JRequest::getInt('id');
     // Check for edit form.
     if ($view == 'module' && $layout == 'edit' && !$this->checkEditId('com_modules.edit.module', $id)) {
         // Somehow the person just went to the form - we don't allow that.
         $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id));
         $this->setMessage($this->getError(), 'error');
         $this->setRedirect(JRoute::_('index.php?option=com_modules&view=modules', false));
         return false;
     }
     parent::display();
 }
開發者ID:carmerin,項目名稱:cesae-web,代碼行數:27,代碼來源:controller.php

示例6: display

 /**
  * Method to display a view.
  *
  * @param bool $cachable
  * @param bool $urlparams
  *
  * @internal param \If $boolean true, the view output will be cached
  * @internal param \An $array array of safe url parameters and their variable types, for valid values see {@link JFilterInput::clean()}.
  *
  * @return    JController        This object to support chaining.
  * @since    1.5
  */
 public function display($cachable = false, $urlparams = false)
 {
     require_once JPATH_ADMINISTRATOR . '/components/com_modules/helpers/modules.php';
     // Load the submenu.
     ModulesHelper::addSubmenu(JFactory::getApplication()->input->getCmd('view', 'modules'));
     $view = JFactory::getApplication()->input->getCmd('view', 'modules');
     $layout = JFactory::getApplication()->input->getCmd('layout', 'default');
     $id = JFactory::getApplication()->input->getInt('id', null);
     // Check for edit form.
     if ($view == 'module' && $layout == 'edit' && !$this->checkEditId('com_roksprocket.edit.module', $id)) {
         // Somehow the person just went to the form - we don't allow that.
         $this->setError(JText::sprintf('JLIB_APPLICATION_ERROR_UNHELD_ID', $id));
         $this->setMessage($this->getError(), 'error');
         $this->setRedirect(JRoute::_(sprintf('index.php?option=%s&view=modules', RokSprocket_Helper::getRedirectionOption()), false));
         return false;
     }
     if (RokCommon_Session::get('roksprocket.' . $id, false)) {
         RokCommon_Session::clear('roksprocket.' . $id);
     }
     parent::display();
 }
開發者ID:TeamCodeStudio,項目名稱:fpmoz,代碼行數:33,代碼來源:controller.php

示例7: display

 /**
  * Method to display a view.
  */
 public function display()
 {
     require_once JPATH_COMPONENT . '/helpers/modules.php';
     // Get the document object.
     $document = JFactory::getDocument();
     // Set the default view name and format from the Request.
     $vName = JRequest::getWord('view', 'modules');
     $vFormat = $document->getType();
     $lName = JRequest::getWord('layout', 'default');
     // Get and render the view.
     if ($view =& $this->getView($vName, $vFormat)) {
         // Get the model for the view.
         $model =& $this->getModel($vName);
         // Push the model into the view (as default).
         $view->setModel($model, true);
         $view->setLayout($lName);
         // Push document object into the view.
         $view->assignRef('document', $document);
         $view->display();
         // Load the submenu.
         ModulesHelper::addSubmenu($vName);
     }
 }
開發者ID:joebushi,項目名稱:joomla,代碼行數:26,代碼來源:controller.php


注:本文中的ModulesHelper::addSubmenu方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。