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


PHP Registry::start方法代碼示例

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


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

示例1: base_Controller

 /**
  * Constructor.
  * @param boolean $check Control de aplicación configurada. Por defecto, se controla (true).
  */
 function base_Controller($bol_check = true)
 {
     if ($bol_check) {
         //Preparamos la sesión
         $obj_session =& Session::start();
         //Obtenemos el registro de miguel
         $this->registry =& Registry::start();
     }
     if (MIGUELBASE_CACHEABLE) {
         $this->bol_isCacheable = true;
     } else {
         $this->bol_isCacheable = false;
     }
 }
開發者ID:BackupTheBerlios,項目名稱:migueloo,代碼行數:18,代碼來源:base_controller.class.php

示例2: _getBarrElements

 /**
  * Obtiene los elementos a incluir en la barra
  * @internal
  */
 function _getBarrElements()
 {
     $registry =& Registry::start();
     $services = $registry->listServices();
     return $services;
 }
開發者ID:BackupTheBerlios,項目名稱:migueloo,代碼行數:10,代碼來源:miguel_vmenu.class.php

示例3: base_LayoutPage

 /**
  * Constructor.
  * @param string $str_title Título de la página
  * @param array $arr_commarea Variables necesarias para la visualización de la vista
  *
  */
 function base_LayoutPage($str_title, $arr_commarea)
 {
     $this->arr_commarea = $arr_commarea;
     //Obtenemos el registro de miguel
     $this->registry =& Registry::start();
     //Superclass initialization
     $this->PageWidget(agt($str_title), $this->str_renderType);
 }
開發者ID:BackupTheBerlios,項目名稱:migueloo,代碼行數:14,代碼來源:base_layoutpage.class.php

示例4: _getServicesBar

 function _getServicesBar()
 {
     $registry = Registry::start();
     $table = html_table(Session::getContextValue("mainInterfaceWidth"), 0, 1);
     //$table->set_tag_attribute('bgcolor', '#CECECE');
     //$table->set_class("mainInterfaceWidth");
     //$table->set_id("header");
     $row = html_tr();
     $arr_elem = $registry->listServices();
     //$arr_elem = $this->_getBarrElementsbyFile();
     $profile = Session::getValue("userinfo_profile_id");
     //Debug::oneVar($profile, __FILE__, __LINE__);
     foreach ($arr_elem as $app => $params) {
         if ($registry->checkServiceAccess($params[0], $profile)) {
             if (strncmp($params[1], 'http://', 7) != 0) {
                 $row->add($this->_getBarElement(Util::format_URLPath($params[1], $params[2]), $params[4]));
             } else {
                 $row->add($this->_getBarElement($params[1], $params[4]));
             }
         }
     }
     $table->add_row($row);
     return $table;
 }
開發者ID:BackupTheBerlios,項目名稱:migueloo,代碼行數:24,代碼來源:miguel_vpage.class.php


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