PluginProbe
ShiftController Employee Shift Scheduling / 3.2.4
ShiftController Employee Shift Scheduling v3.2.4
4.9.97 4.9.96 4.9.95 4.9.74 4.9.75 4.9.76 4.9.77 4.9.78 4.9.84 4.9.85 4.9.87 4.9.91 4.9.92 trunk 2.1.0 2.1.1 2.1.2 2.2.0 2.2.1 2.2.2 2.2.3 2.2.4 2.2.5 2.2.6 3.2.4 All 38 releases
shiftcontroller / application / models / location.php

location.php in ShiftController Employee Shift Scheduling 3.2.4, at application/models/location.php

19 lines 394 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 class Location_HC_Model extends MY_model
3 {
4 static $me_all = array();
5
6 var $table = 'locations';
7 var $default_order_by = array('show_order' => 'ASC');
8
9 var $has_many = array(
10 'shift' => array(
11 'class' => 'shift',
12 'other_field' => 'location',
13 ),
14 );
15
16 var $validation = array(
17 'name' => array('required', 'trim', 'max_length' => 50, 'unique', 'check_show_order'),
18 );
19 }