Classes

File util/ValidationResult.class.php

File util/ValidationResult.class.php

 1:  2:  3:  4:  5:  6:  7:  8:  9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 
<?php
/**
 * This class is done to time a process easily. You choose when to start and when to stop.
 * @package     Util
 * @copyright   &copy; 2005-2019 PHPBoost
 * @license     https://www.gnu.org/licenses/gpl-3.0.html GNU/GPL-3.0
 * @author      Loic ROUCHON <horn@phpboost.com>
 * @version     PHPBoost 5.2 - last update: 2014 12 22
 * @since       PHPBoost 3.0 - 2010 01 16
*/

class ValidationResult
{
    /**
     * @var string the validation result title
     */
    private $title;

    /**
     * @var string[]
     */
    private $errors = array();

    public function __construct($title = 'Validation result')
    {
        $this->title = $title;
    }

    public function get_title()
    {
        return $this->title;
    }

    /**
     * Adds an error message
     * @param string $error_msg the error message to add
     */
    public function add_error($error_msg)
    {
        $this->errors[] = $error_msg;
    }

    /**
     * Returns the list of the errors messages
     * @return string[] errors messages
     */
    public function get_errors_messages()
    {
        return $this->errors;
    }

    /**
     * Returns <code>true</code> if there is errors
     * @return boolean <code>true</code> if there is errors
     */
    public function has_errors()
    {
        return !empty($this->errors);
    }
}
?>