本文整理汇总了PHP中Self::validateHouseNumber方法的典型用法代码示例。如果您正苦于以下问题:PHP Self::validateHouseNumber方法的具体用法?PHP Self::validateHouseNumber怎么用?PHP Self::validateHouseNumber使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类Self
的用法示例。
在下文中一共展示了Self::validateHouseNumber方法的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);
}