<?php
/**
* PowerBB Engine - The Engine Helps You To Create Bulletin Board System.
*/
/**
* @package : PowerBBVote
* @author : Mohammed Q. Hussain <hide@address.com>
* @start : 09/06/2008 07:28:04 AM
* @updated : 21/06/2011 08:57:59 PM
*/
class PowerBBVote
{
var $id;
var $Engine;
function PowerBBVote($Engine)
{
$this->Engine = $Engine;
}
function InsertVote($param)
{
if (!isset($param)
or !is_array($param))
{
$param = array();
}
$query = $this->Engine->records->Insert($this->Engine->table['vote'],$param['field']);
if ($param['get_id'])
{
$this->id = $this->Engine->DB->sql_insert_id();
}
return ($query) ? true : false;
}
function UpdateVote($param)
{
if (!isset($param)
or !is_array($param))
{
$param = array();
}
$query = $this->Engine->records->Update($this->Engine->table['vote'],$param['field'],$param['where']);
return ($query) ? true : false;
}
function DeleteVote($param)
{
if (!isset($param)
or !is_array($param))
{
$param = array();
}
$param['table'] = $this->Engine->table['vote'];
$del = $this->Engine->records->Delete($param);
return ($del) ? true : false;
}
function GetVoteList($param)
{
if (!isset($param)
or !is_array($param))
{
$param = array();
}
$param['select'] = '*';
$param['from'] = $this->Engine->table['vote'];
$rows = $this->Engine->records->GetList($param);
return $rows;
}
function GetVoteInfo($param)
{
if (!isset($param)
or !is_array($param))
{
$param = array();
}
$param['select'] = '*';
$param['from'] = $this->Engine->table['vote'];
$rows = $this->Engine->records->GetInfo($param);
return $rows;
}
}
?>