Files
EasySoft-ZenTaoPMS/module/release/model.php
shiyangyangwork@yahoo.cn ba28237229 * finish the task #529
2011-09-05 08:37:28 +00:00

89 lines
2.9 KiB
PHP

<?php
/**
* The model file of release module of ZenTaoPMS.
*
* @copyright Copyright 2009-2011 青岛易软天创网络科技有限公司 (QingDao Nature Easy Soft Network Technology Co,LTD www.cnezsoft.com)
* @license LGPL (http://www.gnu.org/licenses/lgpl.html)
* @author Chunsheng Wang <chunsheng@cnezsoft.com>
* @package release
* @version $Id$
* @link http://www.zentao.net
*/
?>
<?php
class releaseModel extends model
{
/**
* Get release by id.
*
* @param int $releaseID
* @access public
* @return object
*/
public function getByID($releaseID)
{
$release = $this->dao->select('t1.*, t2.name as buildName, t3.name as productName')
->from(TABLE_RELEASE)->alias('t1')
->leftJoin(TABLE_BUILD)->alias('t2')->on('t1.build = t2.id')
->leftJoin(TABLE_PRODUCT)->alias('t3')->on('t1.product = t3.id')
->where('t1.id')->eq((int)$releaseID)
->orderBy('t1.id DESC')
->fetch();
$release->desc = $this->loadModel('file')->setImgSize($release->desc);
return $release;
}
/**
* Get list of releases.
*
* @param int $productID
* @access public
* @return array
*/
public function getList($productID)
{
return $this->dao->select('t1.*, t2.name as productName, t3.name as buildName')
->from(TABLE_RELEASE)->alias('t1')
->leftJoin(TABLE_PRODUCT)->alias('t2')->on('t1.product = t2.id')
->leftJoin(TABLE_BUILD)->alias('t3')->on('t1.build = t3.id')
->where('t1.product')->eq((int)$productID)
->andWhere('t1.deleted')->eq(0)
->orderBy('t1.id DESC')
->fetchAll();
}
/**
* Create a release.
*
* @param int $productID
* @access public
* @return int
*/
public function create($productID)
{
$release = fixer::input('post')->stripTags('name')->add('product', (int)$productID)->get();
$this->dao->insert(TABLE_RELEASE)->data($release)->autoCheck()->batchCheck($this->config->release->create->requiredFields, 'notempty')->check('name','unique')->exec();
if(!dao::isError()) return $this->dao->lastInsertID();
}
/**
* Update a release.
*
* @param int $releaseID
* @access public
* @return void
*/
public function update($releaseID)
{
$oldRelease = $this->getByID($releaseID);
$release = fixer::input('post')->stripTags('name')->get();
$this->dao->update(TABLE_RELEASE)->data($release)
->autoCheck()
->batchCheck($this->config->release->edit->requiredFields, 'notempty')
->check('name','unique', "id != $releaseID")
->where('id')->eq((int)$releaseID)
->exec();
if(!dao::isError()) return common::createChanges($oldRelease, $release);
}
}