null, 'project_id' => null, 'commit_id' => null, 'status' => null, 'log' => null, 'branch' => null, 'created' => null, 'started' => null, 'finished' => null, ); protected $_getters = array( 'id' => 'getId', 'project_id' => 'getProjectId', 'commit_id' => 'getCommitId', 'status' => 'getStatus', 'log' => 'getLog', 'branch' => 'getBranch', 'created' => 'getCreated', 'started' => 'getStarted', 'finished' => 'getFinished', 'Project' => 'getProject', ); protected $_setters = array( 'id' => 'setId', 'project_id' => 'setProjectId', 'commit_id' => 'setCommitId', 'status' => 'setStatus', 'log' => 'setLog', 'branch' => 'setBranch', 'created' => 'setCreated', 'started' => 'setStarted', 'finished' => 'setFinished', 'Project' => 'setProject', ); public $columns = array( 'id' => array( 'type' => 'int', 'length' => '11', 'primary_key' => true, 'auto_increment' => true, ), 'project_id' => array( 'type' => 'int', 'length' => '11', ), 'commit_id' => array( 'type' => 'varchar', 'length' => '50', ), 'status' => array( 'type' => 'tinyint', 'length' => '4', ), 'log' => array( 'type' => 'text', 'length' => '', 'nullable' => true, ), 'branch' => array( 'type' => 'varchar', 'length' => '50', ), 'created' => array( 'type' => 'datetime', 'length' => '', 'nullable' => true, ), 'started' => array( 'type' => 'datetime', 'length' => '', 'nullable' => true, ), 'finished' => array( 'type' => 'datetime', 'length' => '', 'nullable' => true, ), ); public $indexes = array( 'PRIMARY' => array('unique' => true, 'columns' => 'id'), 'project_id' => array('columns' => 'project_id'), 'idx_status' => array('columns' => 'status'), ); public $foreignKeys = array( 'build_ibfk_1' => array('local_col' => 'project_id', 'update' => 'CASCADE', 'delete' => 'CASCADE', 'table' => 'project', 'col' => 'id'), ); public function getId() { $rtn = $this->_data['id']; return $rtn; } public function getProjectId() { $rtn = $this->_data['project_id']; return $rtn; } public function getCommitId() { $rtn = $this->_data['commit_id']; return $rtn; } public function getStatus() { $rtn = $this->_data['status']; return $rtn; } public function getLog() { $rtn = $this->_data['log']; return $rtn; } public function getBranch() { $rtn = $this->_data['branch']; return $rtn; } public function getCreated() { $rtn = $this->_data['created']; if(!empty($rtn)) { $rtn = new \DateTime($rtn); } return $rtn; } public function getStarted() { $rtn = $this->_data['started']; if(!empty($rtn)) { $rtn = new \DateTime($rtn); } return $rtn; } public function getFinished() { $rtn = $this->_data['finished']; if(!empty($rtn)) { $rtn = new \DateTime($rtn); } return $rtn; } public function setId($value) { $this->_validateNotNull('Id', $value); $this->_validateInt('Id', $value); if($this->_data['id'] == $value) { return; } $this->_data['id'] = $value; $this->_setModified('id'); } public function setProjectId($value) { $this->_validateNotNull('ProjectId', $value); $this->_validateInt('ProjectId', $value); if($this->_data['project_id'] == $value) { return; } $this->_data['project_id'] = $value; $this->_setModified('project_id'); } public function setCommitId($value) { $this->_validateNotNull('CommitId', $value); $this->_validateString('CommitId', $value); if($this->_data['commit_id'] == $value) { return; } $this->_data['commit_id'] = $value; $this->_setModified('commit_id'); } public function setStatus($value) { $this->_validateNotNull('Status', $value); $this->_validateInt('Status', $value); if($this->_data['status'] == $value) { return; } $this->_data['status'] = $value; $this->_setModified('status'); } public function setLog($value) { $this->_validateString('Log', $value); if($this->_data['log'] == $value) { return; } $this->_data['log'] = $value; $this->_setModified('log'); } public function setBranch($value) { $this->_validateNotNull('Branch', $value); $this->_validateString('Branch', $value); if($this->_data['branch'] == $value) { return; } $this->_data['branch'] = $value; $this->_setModified('branch'); } public function setCreated($value) { $this->_validateDate('Created', $value); if($this->_data['created'] == $value) { return; } $this->_data['created'] = $value; $this->_setModified('created'); } public function setStarted($value) { $this->_validateDate('Started', $value); if($this->_data['started'] == $value) { return; } $this->_data['started'] = $value; $this->_setModified('started'); } public function setFinished($value) { $this->_validateDate('Finished', $value); if($this->_data['finished'] == $value) { return; } $this->_data['finished'] = $value; $this->_setModified('finished'); } /** * Get the Project model for this Build by Id. * * @uses \PHPCI\Store\ProjectStore::getById() * @uses \PHPCI\Model\Project * @return \PHPCI\Model\Project */ public function getProject() { $key = $this->getProjectId(); if(empty($key)) { return null; } return \b8\Store\Factory::getStore('Project')->getById($key); } public function setProject($value) { // Is this an instance of Project? if($value instanceof \PHPCI\Model\Project) { return $this->setProjectObject($value); } // Is this an array representing a Project item? if(is_array($value) && !empty($value['id'])) { return $this->setProjectId($value['id']); } // Is this a scalar value representing the ID of this foreign key? return $this->setProjectId($value); } public function setProjectObject(\PHPCI\Model\Project $value) { return $this->setProjectId($value->getId()); } }