UI plugins, including quality trend chart, logs and lines of code. Some UI tweaks.

This commit is contained in:
Dan Cryer 2013-10-08 07:21:46 +01:00
commit b33189e08e
28 changed files with 2778 additions and 217 deletions

View file

@ -579,4 +579,16 @@ class BuildBase extends Model
{
return $this->setProjectId($value->getId());
}
/**
* Get BuildMeta models by BuildId for this Build.
*
* @uses \PHPCI\Store\BuildMetaStore::getByBuildId()
* @uses \PHPCI\Model\BuildMeta
* @return \PHPCI\Model\BuildMeta[]
*/
public function getBuildBuildMetas()
{
return \b8\Store\Factory::getStore('BuildMeta')->getByBuildId($this->getId());
}
}