General Progress
This commit is contained in:
27
application/messages/models/room_children.php
Normal file
27
application/messages/models/room_children.php
Normal file
@@ -0,0 +1,27 @@
|
||||
<?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',
|
||||
),
|
||||
);
|
||||
?>
|
Reference in New Issue
Block a user