* @copyright 2021 nisch.codes * @license https://projects.nisch.codes/nischcodes/shiftcalc/src/branch/main/LICENSE GPL-3 * @version 1.0.0 * @link https://projects.nisch.codes/nischcodes/shiftcalc */ use Nischcodes\Shiftcalc\MVC\BaseModel; class HomeModel extends BaseModel { // implement the init function public function init() { echo "HomeModel init"; } // implement the load function public function load() { $this->repository = [ ['date' => '01/01/2025', 'start' => '', 'end' => '', 'sdec' => 0, 'edec' => 0, 'worktime' => 8, 'break' => 0, 'worktime_total' => 8, 'info' => 'Holiday', 'desc' => 'First Example Holiday'], ['date' => '03/05/2025', 'start' => '', 'end' => '', 'sdec' => 0, 'edec' => 0, 'worktime' => 8, 'break' => 0, 'worktime_total' => 8, 'info' => 'Holiday', 'desc' => 'Second Example Holiday'] ]; } }