Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/controller/startup/
Upload File :
Current File : /var/www/alh/admin/controller/startup/event.php

<?php
class ControllerStartupEvent extends Controller {
	public function index() {
		// Add events from the DB
		$this->load->model('setting/event');
		
		$results = $this->model_setting_event->getEvents();
		
		foreach ($results as $result) {
			if ((substr($result['trigger'], 0, 6) == 'admin/') && $result['status']) {
				$this->event->register(substr($result['trigger'], 6), new Action($result['action']), $result['sort_order']);
			}
		}		
	}
}