当前位置: 首页>>代码示例>>PHP>>正文


PHP ObjectConfig::set方法代码示例

本文整理汇总了PHP中ObjectConfig::set方法的典型用法代码示例。如果您正苦于以下问题:PHP ObjectConfig::set方法的具体用法?PHP ObjectConfig::set怎么用?PHP ObjectConfig::set使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在ObjectConfig的用法示例。


在下文中一共展示了ObjectConfig::set方法的10个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: set

 /**
  * Set a configuration element
  *
  * @param  string
  * @param  mixed
  * @return void
  */
 public function set($name, $value)
 {
     parent::set($name, $value);
     //Only calculate the limit and offset if we have a total
     if ($this->total) {
         $this->limit = (int) max($this->limit, 1);
         $this->offset = (int) max($this->offset, 0);
         if ($this->limit > $this->total) {
             $this->offset = 0;
         }
         if (!$this->limit) {
             $this->offset = 0;
             $this->limit = $this->total;
         }
         $this->count = (int) ceil($this->total / $this->limit);
         if ($this->offset > $this->total) {
             $this->offset = ($this->count - 1) * $this->limit;
         }
         $this->current = (int) floor($this->offset / $this->limit) + 1;
     }
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:28,代码来源:paginator.php

示例2: setAffected

 /**
  * Get the number of affected rows
  *
  * @param integer $affected
  * @return DatabaseContext
  */
 public function setAffected($affected)
 {
     return ObjectConfig::set('affected', $affected);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:context.php

示例3: setIdentityKey

 /**
  * Set the identity key
  *
  * @param mixed $value
  * @return ModelContext
  */
 public function setIdentityKey($value)
 {
     return ObjectConfig::set('identity_key', $value);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:context.php

示例4: set

 /**
  * Set a command property or attribute
  *
  * If an command property exists the property will be set, otherwise an attribute will be added.
  *
  * @param  string $name
  * @param  mixed  $value
  * @return Command
  */
 public final function set($name, $value)
 {
     $method = 'set' . ucfirst($name);
     if (!method_exists($this, $method)) {
         parent::set($name, $value);
     } else {
         $this->{$method}($value);
     }
     return $this;
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:19,代码来源:command.php

示例5: set

 /**
  * Set a configuration item
  *
  * @param  string $name
  * @param  mixed  $value
  * @return void
  */
 public function set($name, $value)
 {
     if (is_array($value)) {
         $value = new ObjectConfig($value);
     }
     parent::set($name, $value);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:14,代码来源:command.php

示例6: setParameters

 /**
  * Set the view parameters
  *
  * @param array $parameters
  * @return ViewContext
  */
 public function setParameters($parameters)
 {
     return ObjectConfig::set('parameters', $parameters);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:context.php

示例7: setEntity

 /**
  * Set the model entity
  *
  * @param ModelEntityInterface $entity
  * @return ControllerContextModel
  */
 public function setEntity($entity)
 {
     return ObjectConfig::set('entity', $entity);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:model.php

示例8: setLayout

 /**
  * Set the view layout
  *
  * @param string $layout
  * @return ViewContextTemplate
  */
 public function setLayout($layout)
 {
     return ObjectConfig::set('layout', $layout);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:template.php

示例9: setQuery

 /**
  * Set the model query
  *
  * @param DatabaseQueryInterface $query
  * @return ModelContext
  */
 public function setQuery($query)
 {
     return ObjectConfig::set('query', $query);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:database.php

示例10: setUser

 /**
  * Set the user object
  *
  * @param UserInterface $user
  * @return $this
  */
 public function setUser(UserInterface $user)
 {
     return ObjectConfig::set('user', $user);
 }
开发者ID:nooku,项目名称:nooku-framework,代码行数:10,代码来源:context.php


注:本文中的ObjectConfig::set方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。