28 lines
752 B
PHP
28 lines
752 B
PHP
<?php defined('SYSPATH') or die('No direct access allowed.');
|
|
|
|
/**
|
|
* Room Children Code validation messages.
|
|
*
|
|
* @package Membership Database
|
|
* @category Validation
|
|
* @author Deon George
|
|
* @copyright (c) 2010 Deon George
|
|
* @license http://dev.leenooks.net/license.html
|
|
*/
|
|
|
|
return array(
|
|
'date_start'=>array(
|
|
'not_empty'=>'End Date cannot be empty',
|
|
),
|
|
'date_stop'=>array(
|
|
'not_empty'=>'End Date cannot be empty',
|
|
'validate_datestop'=>'End Date cannot be earlier than Start Date',
|
|
),
|
|
'code'=>array(
|
|
'validate_absentnoshow'=>'Absent No Show date cant be in the future',
|
|
'validate_absentnotice'=>'Absent Notice date cant be in the past',
|
|
'validate_casualrequest'=>'Casual Request date cant be in the past',
|
|
),
|
|
);
|
|
?>
|