Your IP : 18.217.212.222


Current Path : /var/www/alh/upload/catalog/controller/startup/
Upload File :
Current File : /var/www/alh/upload/catalog/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) {
			$this->event->register(substr($result['trigger'], strpos($result['trigger'], '/') + 1), new Action($result['action']), $result['sort_order']);
		}
	}
}