mirror of
https://github.com/atlanticbiomedical/portal-legacy.git
synced 2025-07-02 01:47:28 -04:00
127 lines
3.3 KiB
PHP
Executable File
127 lines
3.3 KiB
PHP
Executable File
<?php
|
|
/*
|
|
* $Id: ValidationFailed.php 536 2007-01-10 14:30:38Z heltem $
|
|
*
|
|
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
* "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
* LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
* A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
* OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
* SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
* LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
* DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
* THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
* OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
*
|
|
* This software consists of voluntary contributions made by many individuals
|
|
* and is licensed under the LGPL. For more information please see
|
|
* <http://propel.phpdb.org>.
|
|
*/
|
|
|
|
|
|
/**
|
|
* Simple class that serves as a container for any information about a failed validation.
|
|
*
|
|
* Currently this class stores the qualified column name (e.g. tablename.COLUMN_NAME) and
|
|
* the message that should be displayed to the user.
|
|
*
|
|
* An array of these objects will be returned by BasePeer::doValidate() if validation
|
|
* failed.
|
|
*
|
|
* @author Hans Lellelid <hans@xmpl.org>
|
|
* @version $Revision: 536 $
|
|
* @package propel.validator
|
|
* @see BasePeer::doValidate()
|
|
*/
|
|
class ValidationFailed {
|
|
|
|
/** Column name in tablename.COLUMN_NAME format */
|
|
private $colname;
|
|
|
|
/** Message to display to user. */
|
|
private $message;
|
|
|
|
/** Validator object that caused this to fail. */
|
|
private $validator;
|
|
|
|
/**
|
|
* Construct a new ValidationFailed object.
|
|
* @param string $colname Column name.
|
|
* @param string $message Message to display to user.
|
|
* @param object $validator The Validator that caused this column to fail.
|
|
*/
|
|
public function __construct($colname, $message, $validator = null)
|
|
{
|
|
$this->colname = $colname;
|
|
$this->message = $message;
|
|
$this->validator = $validator;
|
|
}
|
|
|
|
/**
|
|
* Set the column name.
|
|
* @param string $v
|
|
*/
|
|
public function setColumn($v)
|
|
{
|
|
$this->colname = $v;
|
|
}
|
|
|
|
/**
|
|
* Gets the column name.
|
|
* @return string Qualified column name (tablename.COLUMN_NAME)
|
|
*/
|
|
public function getColumn()
|
|
{
|
|
return $this->colname;
|
|
}
|
|
|
|
/**
|
|
* Set the message for the validation failure.
|
|
* @param string $v
|
|
*/
|
|
public function setMessage($v)
|
|
{
|
|
$this->message = $v;
|
|
}
|
|
|
|
/**
|
|
* Gets the message for the validation failure.
|
|
* @return string
|
|
*/
|
|
public function getMessage()
|
|
{
|
|
return $this->message;
|
|
}
|
|
|
|
/**
|
|
* Set the validator object that caused this to fail.
|
|
* @param object $v
|
|
*/
|
|
public function setValidator($v)
|
|
{
|
|
$this->validator = $v;
|
|
}
|
|
|
|
/**
|
|
* Gets the validator object that caused this to fail.
|
|
* @return object
|
|
*/
|
|
public function getValidator()
|
|
{
|
|
return $this->validator;
|
|
}
|
|
|
|
/**
|
|
* "magic" method to get string represenation of object.
|
|
* Maybe someday PHP5 will support the invoking this method automatically
|
|
* on (string) cast. Until then it's pretty useless.
|
|
* @return string
|
|
*/
|
|
public function __toString()
|
|
{
|
|
return $this->getMessage();
|
|
}
|
|
|
|
}
|