當前位置: 首頁>>代碼示例>>PHP>>正文


PHP MVCUtils::includeValidator方法代碼示例

本文整理匯總了PHP中MVCUtils::includeValidator方法的典型用法代碼示例。如果您正苦於以下問題:PHP MVCUtils::includeValidator方法的具體用法?PHP MVCUtils::includeValidator怎麽用?PHP MVCUtils::includeValidator使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在MVCUtils的用法示例。


在下文中一共展示了MVCUtils::includeValidator方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。

示例1: isValid

 public function isValid()
 {
     global $cfg;
     $db = Database::getInstance($cfg['MVC']['dsn']);
     $rules = $db->getAll("SELECT vrclassname, description, fieldname, \r\n\t\t\tfieldvalidators.modulename FROM fieldvalidators, formfields \r\n\t\t\tWHERE formfields.ruleid = fieldvalidators.ruleid\r\n\t\t\tAND formname = '{$this->formName}'");
     //This statement has been removed from the where clause:
     //modulename = '{$this->fieldData['moduleName']}' AND
     $invalidFields = array();
     $sess = Session::getInstance();
     // Validate the submitted fields
     foreach ($rules as $rule) {
         MVCUtils::includeValidator($rule['vrclassname'], $rule['modulename']);
         eval("\$validatorObj = new {$rule['vrclassname']}(\$this->fieldData);");
         $vResult = $validatorObj->isValid($this->fieldData[$rule['fieldname']]);
         if ($vResult !== true) {
             //Put the errors:
             // a) straight into the errors array for backwards compatibility
             // b) into a sub array, whose key is the submitted value for
             //    errorFormName, otherwise use the form name
             $invalidFields[$rule['fieldname']] = $vResult;
             if (!$this->errorFormName) {
                 $invalidFields[$this->formName][$rule['fieldname']] = $vResult;
             } else {
                 $invalidFields[$this->errorFormName][$rule['fieldname']] = $vResult;
             }
         }
         if ($sess->keyExists('auth_user')) {
             BasicLogger::logMessage($sess->getValue('auth_user'), self::module, "debug");
         }
     }
     if (!checkdate($this->fieldData['month'], $this->fieldData['day'], $this->fieldData['year']) || !is_numeric($this->fieldData['month']) || !is_numeric($this->fieldData['day']) || !is_numeric($this->fieldData['year'])) {
         $invalidFields[$this->formName]['form'] = "Invalid Date";
     }
     return $invalidFields;
 }
開發者ID:radiowarwick,項目名稱:digiplay_legacy,代碼行數:35,代碼來源:DPSUserShowDetailsValidator.class.php

示例2: isValid

<?php

/**
 * 
 * @package FrontEnds
 * @subpackage Auth
 */
include_once $cfg['DBAL']['dir']['root'] . '/Database.class.php';
include_once $cfg['MVC']['dir']['root'] . '/MVCUtils.class.php';
MVCUtils::includeValidator('ValidatorRule', 'MVC');
/**
 * Check that a new username is unique
 * 
 * 
 */
class UniqueNewUsername extends ValidatorRule
{
    public function isValid(&$data)
    {
        global $cfg;
        $out = true;
        $sql = 'SELECT COUNT(*) FROM users WHERE username = ?';
        $db = Database::getInstance($cfg['Auth']['dsn']);
        $count = $db->getOne($sql, array($data));
        if ($count == 0) {
            return true;
        } else {
            return "The username use chose is taken";
        }
    }
}
開發者ID:radiowarwick,項目名稱:digiplay_legacy,代碼行數:31,代碼來源:UniqueNewUsername.class.php


注:本文中的MVCUtils::includeValidator方法示例由純淨天空整理自Github/MSDocs等開源代碼及文檔管理平台,相關代碼片段篩選自各路編程大神貢獻的開源項目,源碼版權歸原作者所有,傳播和使用請參考對應項目的License;未經允許,請勿轉載。