This repository has been archived on 2024-04-08. You can view files and clone it, but cannot push or open issues or pull requests.
memberdb/application/messages/models/room_children.php
2015-09-29 15:58:41 +10:00

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',
),
);
?>