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


PHP Self::validateTc方法代码示例

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


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

示例1: validate

 /**
  * Insert and Update validation
  * In this case, its the same for both methods
  *
  * @return bool
  */
 private function validate()
 {
     //Check nombre
     if (!$this->nombre) {
         Registry::addMessage("Debes introducir un nombre", "error", "nombre");
     } elseif (Self::getBy("nombre", $this->nombre, $this->id)) {
         Registry::addMessage("Este nombre ya está siendo utilizado", "error", "nombre");
     }
     //Check houseNumber
     Self::validateHouseNumber($this->houseNumber, $this->tipoId, $this->id);
     $tipo = new Tipo($this->tipoId);
     if (strtoupper($tipo->codigo) == "P") {
         if (!$this->programaId) {
             Registry::addMessage("Debes seleccionar un programa", "error", "programaId");
         }
         if (!$this->capitulo) {
             Registry::addMessage("Debes seleccionar un capítulo", "error", "capitulo");
         }
         if (!$this->titulo) {
             Registry::addMessage("Debes seleccionar un titulo", "error", "titulo");
         }
     }
     //TC IN/OUT
     Self::validateTc($this->tcIn, "tcIn");
     Self::validateTc($this->tcOut, "tcOut");
     //Return messages avoiding deletion
     return Registry::getMessages(true);
 }
开发者ID:flafuente,项目名称:parrillas,代码行数:34,代码来源:Entrada.php


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