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


PHP ActionIndex::execute方法代碼示例

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


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

示例1: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     $this->loadDataGrid();
     $this->parse();
     $this->display();
 }
開發者ID:jeroendesloovere,項目名稱:fork-cms-module-instagram,代碼行數:10,代碼來源:Index.php

示例2: execute

 /**
  * Execute the action.
  */
 public function execute()
 {
     parent::execute();
     $this->setFilter();
     $this->setItems();
     $this->createXML();
 }
開發者ID:newaltcoin,項目名稱:forkcms,代碼行數:10,代碼來源:ExportAnalyse.php

示例3: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     $this->loadForm();
     $this->validateForm();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:11,代碼來源:Seo.php

示例4: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     $this->checkForDefaultGroups();
     $this->loadDataGrid();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:11,代碼來源:Groups.php

示例5: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     $this->header->addJS('highcharts.js', 'Core', false);
     $this->getData();
     $this->loadDataGrid();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:12,代碼來源:Statistics.php

示例6: execute

 public function execute()
 {
     parent::execute();
     /* Set the initial date range */
     $this->dateRange = new DateRange();
     $this->handleDateRangeForm();
     $this->parse();
     $this->display();
 }
開發者ID:forkcms,項目名稱:forkcms,代碼行數:9,代碼來源:Index.php

示例7: execute

 /**
  * Execute the action.
  */
 public function execute()
 {
     parent::execute();
     $this->loadData();
     $this->loadDataGridInstalled();
     $this->loadDataGridInstallable();
     $this->parse();
     $this->display();
 }
開發者ID:forkcms,項目名稱:forkcms,代碼行數:12,代碼來源:Modules.php

示例8: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     $this->isGod = BackendAuthentication::getUser()->isGod();
     $this->setFilter();
     $this->loadForm();
     $this->loadDataGrid();
     $this->parse();
     $this->display();
 }
開發者ID:forkcms,項目名稱:forkcms,代碼行數:13,代碼來源:Index.php

示例9: execute

 /**
  * Execute the action.
  */
 public function execute()
 {
     parent::execute();
     // load the data
     $this->loadData();
     // load the form
     $this->loadForm();
     $this->validateForm();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:14,代碼來源:Themes.php

示例10: execute

 /**
  * Execute the action
  *
  * @return  void
  */
 public function execute()
 {
     // call parent, this will probably add some general CSS/JS or other required files
     parent::execute();
     // load the datagrids
     $this->loadDataGrids();
     // parse the datagrids
     $this->parse();
     // display the page
     $this->display();
 }
開發者ID:bart-webleads,項目名稱:fork-cms-module-slideshow,代碼行數:16,代碼來源:Index.php

示例11: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     // add js
     $this->header->addJS('http://maps.google.com/maps/api/js?sensor=false', null, false, true, false);
     $this->loadData();
     $this->loadDataGrid();
     $this->loadSettingsForm();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:14,代碼來源:Index.php

示例12: execute

 public function execute()
 {
     parent::execute();
     $this->loadData();
     //		if($this->getParameter('load', 'string', null) == "ok")
     //		{
     //
     //		}
     $this->loadForm();
     $this->validateForm();
     $this->parse();
     $this->display();
 }
開發者ID:Comsa-Veurne,項目名稱:modules,代碼行數:13,代碼來源:UpdateLatLng.php

示例13: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     // get some data
     $modulesThatRequireAkismet = BackendExtensionsModel::getModulesThatRequireAkismet();
     $modulesThatRequireGoogleMaps = BackendExtensionsModel::getModulesThatRequireGoogleMaps();
     // set properties
     $this->needsAkismet = !empty($modulesThatRequireAkismet);
     $this->needsGoogleMaps = !empty($modulesThatRequireGoogleMaps);
     $this->loadForm();
     $this->validateForm();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:17,代碼來源:Index.php

示例14: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     // check if the user is really logged on
     if (BackendAuthentication::getUser()->isAuthenticated()) {
         $userEmail = BackendAuthentication::getUser()->getEmail();
         $this->getContainer()->get('logger')->info("User '{$userEmail}' is already authenticated.");
         $this->redirectToAllowedModuleAndAction();
     }
     parent::execute();
     $this->load();
     $this->validateForm();
     $this->parse();
     $this->display();
 }
開發者ID:bwgraves,項目名稱:forkcms,代碼行數:17,代碼來源:Index.php

示例15: execute

 /**
  * Execute the action
  */
 public function execute()
 {
     parent::execute();
     // add js
     $this->header->addJS('jstree/jquery.tree.js', null, false);
     $this->header->addJS('jstree/lib/jquery.cookie.js', null, false);
     $this->header->addJS('jstree/plugins/jquery.tree.cookie.js', null, false);
     // load the dgRecentlyEdited
     $this->loadDataGrids();
     // parse
     $this->parse();
     // display the page
     $this->display();
 }
開發者ID:forkcms,項目名稱:forkcms,代碼行數:17,代碼來源:Index.php


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