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


PHP ObjectConfig::get方法代碼示例

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


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

示例1: get

 /**
  * Implements lazy loading of the pages config property.
  *
  * @param string
  * @return mixed
  */
 public function get($name, $default = null)
 {
     if ($name == 'pages' && !isset($this->pages)) {
         $this->pages = $this->_pages();
     }
     return parent::get($name);
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:13,代碼來源:paginator.php

示例2: getIdentityKey

 /**
  * Get the identity key
  *
  * @return mixed
  */
 public function getIdentityKey()
 {
     return ObjectConfig::get('identity_key');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:context.php

示例3: get

 /**
  * Get an command property or attribute
  *
  * If an command property exists the property will be returned, otherwise the attribute will be returned. If no
  * property or attribute can be found the method will return NULL.
  *
  * @param  string $name    The property name
  * @param  mixed  $default The default value
  * @return mixed|null  The property value
  */
 public final function get($name, $default = null)
 {
     $method = 'get' . ucfirst($name);
     if (!method_exists($this, $method)) {
         $value = parent::get($name);
     } else {
         $value = $this->{$method}();
     }
     return $value;
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:20,代碼來源:command.php

示例4: getAffected

 /**
  * Get the number of affected rows
  *
  * @return integer
  */
 public function getAffected()
 {
     return ObjectConfig::get('affected');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:context.php

示例5: getParameters

 /**
  * Get the view parameters
  *
  * @return array
  */
 public function getParameters()
 {
     return ObjectConfig::get('parameters');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:context.php

示例6: getEntity

 /**
  * Get the model entity
  *
  * @return ModelEntityInterface
  */
 public function getEntity()
 {
     return ObjectConfig::get('entity');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:model.php

示例7: getLayout

 /**
  * Get the view layout
  *
  * @return string
  */
 public function getLayout()
 {
     return ObjectConfig::get('layout');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:template.php

示例8: getQuery

 /**
  * Get the model query
  *
  * @return DatabaseQueryInterface
  */
 public function getQuery()
 {
     return ObjectConfig::get('query');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:database.php

示例9: getUser

 /**
  * Get the user object
  *
  * @return UserInterface
  */
 public function getUser()
 {
     return ObjectConfig::get('user');
 }
開發者ID:nooku,項目名稱:nooku-framework,代碼行數:9,代碼來源:context.php


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