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


PHP Formo::has_value方法代码示例

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


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

示例1: validate_this

 protected function validate_this()
 {
     $this->strip_error();
     $done_already = FALSE;
     if ($this->value and $this->rule) {
         foreach (Formo::into_array($this->rule) as $rule) {
             if (!$this->_do_rule($rule)) {
                 $this->error = $this->error_msg;
                 $this->error = (is_array($rule) and isset($rule['error_msg'])) ? $rule['error_msg'] : $this->error_msg;
                 break;
             }
         }
     } elseif ($this->required and strtoupper($this->required !== 'FALSE') and strtoupper($this->required) !== 'F' and !Formo::has_value($this->value)) {
         $this->error = $this->required_msg;
     }
 }
开发者ID:carriercomm,项目名称:billing_cart,代码行数:16,代码来源:Formo_Element.php

示例2: validate

 /**
  * validate method. run validation through all elements in group
  *
  */
 function validate()
 {
     Event::run('formogroup.pre_validate', $this);
     foreach ($this->elements as $element => $value) {
         $this->{$element}->validate();
     }
     if ($this->required and !Formo::has_value(Input::instance()->post($this->name))) {
         $this->error = $this->required_msg;
         $this->add_class($this->error_class);
         return $this->error;
     } elseif ($this->rule) {
         $rules = !is_array($this->rule) ? array($this->rule) : $this->rule;
         foreach ($rules as $rule) {
             $function = isset($rule['rule']) ? $rule['rule'] : $rule;
             $error_msg = isset($rule['error_msg']) ? $rule['error_msg'] : $this->error_msg;
             $type = $this->post_type;
             if (!call_user_func($function, Input::instance()->{$type}($this->name))) {
                 $this->error = $error_msg;
                 $this->add_class($this->error_class);
                 return $this->error;
             }
         }
     }
     Event::run('formogroup.post_validate', $this);
 }
开发者ID:ready4god2513,项目名称:Journal,代码行数:29,代码来源:Formo_Group.php


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