Your IP : 216.73.216.95


Current Path : /var/www/alh/admin/model/extension/d_shopunity/
Upload File :
Current File : /var/www/alh/admin/model/extension/d_shopunity/event.php

<?php
/*
 *	location: admin/model
 */

class ModelExtensionDShopunityEvent extends Model {


	public function addEvent($code, $trigger, $action, $status = 1) {
		$this->installDatabase();
		$this->db->query("INSERT INTO `" . DB_PREFIX . "event` SET `code` = '" . $this->db->escape($code) . "', `trigger` = '" . $this->db->escape($trigger) . "', `action` = '" . $this->db->escape($action) . "', `status` = '" . (int)$status . "', `date_added` = now()");
	
		return $this->db->getLastId();
	}

	public function deleteEvent($code) {
		$this->installDatabase();
		//if you have several events under one code - they will all be deleted. 
		//please use deleteEventById.
		if(VERSION > '2.0.0.0'){
			$this->load->model('extension/event');
			return $this->model_extension_event->deleteEvent($code);
		}else{

			$this->db->query("DELETE FROM " . DB_PREFIX . "event WHERE `code` = '" . $this->db->escape($code) . "'");

		}
		
	}


	public function installDatabase(){
		
		$this->db->query("CREATE TABLE IF NOT EXISTS `oc_event` (
		  `event_id` int(11) NOT NULL AUTO_INCREMENT,
		  `code` varchar(32) NOT NULL,
		  `trigger` text NOT NULL,
		  `action` text NOT NULL,
		  `status` tinyint(1) NOT NULL,
		  `date_added` datetime NOT NULL,
		  PRIMARY KEY (`event_id`)
		) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_general_ci;");


		$result = $this->db->query("SELECT * FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_SCHEMA = '".DB_DATABASE."' AND TABLE_NAME = '" . DB_PREFIX . "event' ORDER BY ORDINAL_POSITION")->rows; 
		$columns = array();
		foreach($result as $column){
			$columns[] = $column['COLUMN_NAME'];
		}

		if(!in_array('status', $columns)){
			 $this->db->query("ALTER TABLE `" . DB_PREFIX . "event` ADD status int( 1 ) NOT NULL default '1'");
		}

		if(!in_array('date_added', $columns)){
			 $this->db->query("ALTER TABLE `" . DB_PREFIX . "event` ADD `date_added` datetime NOT NULL");
		}

	}
}
?>