Example #1
0
 * @package   hubzero-cms
 * @author    Shawn Rice <*****@*****.**>
 * @copyright Copyright 2005-2015 HUBzero Foundation, LLC.
 * @license   http://opensource.org/licenses/MIT MIT
 */
// No direct access.
defined('_HZEXEC_') or die;
// get configurations/ defaults
$developer_site = $this->config->get('developer_site', 'hubFORGE');
$live_site = rtrim(Request::base(), '/');
$developer_url = $live_site = 'https://' . preg_replace('#^(https://|http://)#', '', $live_site);
$project_path = $this->config->get('project_path', '/tools/');
$dev_suffix = $this->config->get('dev_suffix', '_dev');
// get status name
\Components\Tools\Helpers\Html::getStatusName($this->status['state'], $state);
\Components\Tools\Helpers\Html::getStatusClass($this->status['state'], $this->statusClass);
$this->css('pipeline.css')->js('pipeline.js');
?>
<header id="content-header">
	<h2><?php 
echo $this->title;
?>
 - <span class="state_hed"><?php 
echo $state;
?>
</span></h2>

	<div id="content-header-extra">
		<ul id="useroptions">
			<li><a class="icon-main main-page btn" href="<?php 
echo Route::url('index.php?option=' . $this->option . '&controller=' . $this->controller . '&task=pipeline');