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


PHP Ibos::t方法代码示例

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


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

示例1: __get

 public function __get($name)
 {
     if (isset($this->_setting[strtolower($name)])) {
         return $this->_setting[$name];
     }
     throw new CException(Ibos::t("yii", "Property \"{class}.{property}\" is not defined.", array("{class}" => get_class($this), "{property}" => $name)));
 }
开发者ID:AxelPanda,项目名称:ibos,代码行数:7,代码来源:ICCategory.php

示例2: __set

 public function __set($name, $value)
 {
     $setter = "set" . $name;
     if (method_exists($this, $setter)) {
         return $this->{$setter}($value);
     } elseif (isset($this->_attributes[$name])) {
         return $this->_attributes[$name] = $value;
     }
     if (method_exists($this, "get" . $name)) {
         throw new CException(Ibos::t("yii", "Property \"{class}.{property}\" is read only.", array("{class}" => get_class($this), "{property}" => $name)));
     } else {
         throw new CException(Ibos::t("yii", "Property \"{class}.{property}\" is not defined.", array("{class}" => get_class($this), "{property}" => $name)));
     }
 }
开发者ID:AxelPanda,项目名称:ibos,代码行数:14,代码来源:ICFlowBase.php

示例3: create

 public function create($data = "")
 {
     if (empty($data)) {
         $data = $_POST;
     } elseif (is_object($data)) {
         $data = get_object_vars($data);
     }
     if (empty($data) || !is_array($data)) {
         throw new DataException(Ibos::t("Data type invalid", "error"));
     }
     $fields = $this->getAttributes();
     if (isset($fields)) {
         foreach ($data as $key => $val) {
             if (!array_key_exists($key, $fields)) {
                 unset($data[$key]);
             }
         }
     }
     return $data;
 }
开发者ID:AxelPanda,项目名称:ibos,代码行数:20,代码来源:ICModel.php

示例4: init

 public function init()
 {
     if (!ModuleUtil::getIsEnabled("statistics")) {
         $this->error(Ibos::t("Module \"{module}\" is illegal.", "error", array("{module}" => Ibos::lang("Statistics"))), $this->createUrl("default/index"));
     }
 }
开发者ID:AxelPanda,项目名称:ibos,代码行数:6,代码来源:StatsController.php

示例5: chkInstance

 private function chkInstance($adapter)
 {
     if (!$adapter instanceof ICIM) {
         throw new CException(Ibos::t("error", "Class \"{class}\" is illegal.", array("{class}" => get_class($adapter))));
     }
 }
开发者ID:AxelPanda,项目名称:ibos,代码行数:6,代码来源:ICIMFactory.php

示例6: chkInstance

 private function chkInstance($chart)
 {
     if (!$chart instanceof ICChart) {
         throw new CException(Ibos::t("error", "Class \"{class}\" is illegal.", array("{class}" => get_class($chart))));
     }
 }
开发者ID:AxelPanda,项目名称:ibos,代码行数:6,代码来源:ICChartFactory.php


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