Sindbad~EG File Manager

Current Path : /proc/self/cwd/application/models/
Upload File :
Current File : //proc/self/cwd/application/models/Rewards.php

<?php if (!defined('BASEPATH')) exit('No direct script access allowed');

/**
 * Rewards class
 */

class Rewards extends CI_Model
{
	/*
	Inserts or updates a rewards
	*/
	public function save(&$rewards_data, $rewards_id = FALSE)
	{
		if(!$rewards_id || !$this->exists($rewards_id))
		{
			if($this->db->insert('sales_reward_points', $rewards_data))
			{
				$rewards_data['id'] = $this->db->insert_id();

				return TRUE;
			}

			return FALSE;
		}

		$this->db->where('id', $rewards_id);

		return $this->db->update('sales_reward_points', $rewards_data);
	}
}
?>

Sindbad File Manager Version 1.0, Coded By Sindbad EG ~ The Terrorists