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


PHP Value::get方法代碼示例

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


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

示例1: get

 /**
  * Get a configuration value.
  *
  * Config Value names should be CamelCase
  */
 public static function get($name, $default = null)
 {
     if (array_key_exists($name, self::$cache)) {
         return self::$cache[$name];
     }
     if (array_key_exists('application.' . $name, self::$cache)) {
         return self::$cache['application.' . $name];
     }
     if (defined('BACKEND_WITH_DATABASE') && BACKEND_WITH_DATABASE) {
         $value = Value::get($name, null);
         //Retrieved from the DB
         if (!is_null($value)) {
             self::$cache[$name] = $value;
             return $value;
         }
     }
     $name = explode('.', $name);
     if (count($name) == 1) {
         array_unshift($name, 'application');
     }
     //Check the config file
     $result = Backend::getConfig($name, $default);
     self::$cache[implode('.', $name)] = $result;
     return $result;
 }
開發者ID:jrgns,項目名稱:backend-php,代碼行數:30,代碼來源:ConfigValue.obj.php

示例2: html_display

 public function html_display($result)
 {
     $result = parent::html_display($result);
     if (Value::get(get_class($this) . '_commented', true) && Component::isActive('Comment')) {
         if ($result instanceof DBObject) {
             $comments = Comment::getComments($result->getMeta('table'), $result->getMeta('id'));
             Backend::addContent(Render::renderFile('comments.tpl.php', array('comment_list' => $comments)));
             if (Permission::check('create', 'comment')) {
                 $values = array('foreign_table' => $result->getMeta('table'), 'foreign_id' => $result->getMeta('id'));
                 Backend::addContent(Render::renderFile('comment.add.tpl.php', $values));
             }
         }
     }
     return $result;
 }
開發者ID:jrgns,項目名稱:backend-php,代碼行數:15,代碼來源:CommentedController.obj.php

示例3: testSet_1

 /**
  * @covers Classes\Value\Value::set
  * @todo   Implement testSet().
  */
 public function testSet_1()
 {
     $this->object->set('One');
     $this->assertEquals('One', $this->object->get());
 }
開發者ID:vokson,項目名稱:scad.constructor.php,代碼行數:9,代碼來源:StringValueTest.php

示例4: checkParameters

 public static function checkParameters($parameters)
 {
     $parameters = parent::checkParameters($parameters);
     if (Controller::$action == 'display') {
         $parameters[1] = array_key_exists(1, $parameters) ? $parameters[1] : 0;
         $parameters[2] = array_key_exists(2, $parameters) ? $parameters[2] : Value::get('TagContentListLength', 10);
     } else {
         if (in_array(Controller::$action, array('display'))) {
             if (!isset(Controller::$parameters[0])) {
                 $parameters[1] = 0;
             }
             if (!isset(Controller::$parameters[2])) {
                 $parameters[2] = Value::get('list_length', 5);
             }
         }
     }
     return $parameters;
 }
開發者ID:jrgns,項目名稱:backend-php,代碼行數:18,代碼來源:Tag.obj.php

示例5: testSet_1

 /**
  * @covers Classes\Value\Value::set
  * @todo   Implement testSet().
  */
 public function testSet_1()
 {
     $this->object->set(5.5);
     $this->assertEquals(5.5, $this->object->get());
 }
開發者ID:vokson,項目名稱:scad.constructor.php,代碼行數:9,代碼來源:FloatValueTest.php

示例6: get

 /**
  * Get value
  *
  * @return integer
  */
 public function get()
 {
     return (int) parent::get();
 }
開發者ID:emoveo,項目名稱:sfm,代碼行數:9,代碼來源:Counter.php


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