<?php
/**
* HostingValidator.class.php
*
* This file contains the definition of the HostingValidator class.
*
* @package SolidWorks
* @author John Diamond <hide@address.com>
* @copyright John Diamond <hide@address.com>
* @license http://www.opensource.org/licenses/gpl-license.php GNU Public License
*/
/**
* HostingValidator
*
* @package SolidWorks
* @author John Diamond <hide@address.com>
*/
class HostingValidator extends FieldValidator {
/**
* Validate a Hosting Service ID
*
* Verifies that the hosting service exists.
*
* @param string $data Field data
* @return HostingServiceDBO HostingService DBO for this HostingService ID
* @throws RecordNotFoundException
*/
public function validate( $data ) {
$data = parent::validate( $data );
try {
$hostingDBO = load_HostingServiceDBO( intval( $data ) );
}
catch ( DBRowNotFoundException $e ) {
throw new RecordNotFoundException( "HostingService" );
}
if ( $this->fieldConfig['publicitemsonly'] && !$hostingDBO->isPublic() ) {
throw new RecordNotFoundException( "HostingService" );
}
return $hostingDBO;
}
}
?>