CC-2166: Packaging Improvements. Moved the Zend app into airtime_mvc. It is now installed to /var/www/airtime. Storage is now set to /srv/airtime/stor. Utils are now installed to /usr/lib/airtime/utils/. Added install/airtime-dircheck.php as a simple test to see if everything is install/uninstalled correctly.
This commit is contained in:
parent
514777e8d2
commit
b11cbd8159
4546 changed files with 138 additions and 51 deletions
|
@ -0,0 +1,165 @@
|
|||
<?php
|
||||
/**
|
||||
* Zend Framework
|
||||
*
|
||||
* LICENSE
|
||||
*
|
||||
* This source file is subject to the new BSD license that is bundled
|
||||
* with this package in the file LICENSE.txt.
|
||||
* It is also available through the world-wide-web at this URL:
|
||||
* http://framework.zend.com/license/new-bsd
|
||||
* If you did not receive a copy of the license and are unable to
|
||||
* obtain it through the world-wide-web, please send an email
|
||||
* to license@zend.com so we can send you a copy immediately.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Wildfire
|
||||
* @subpackage Plugin
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
* @version $Id: TableMessage.php 20096 2010-01-06 02:05:09Z bkarwin $
|
||||
*/
|
||||
|
||||
/** Zend_Wildfire_Plugin_FirePhp */
|
||||
require_once 'Zend/Wildfire/Plugin/FirePhp.php';
|
||||
|
||||
/** Zend_Wildfire_Plugin_FirePhp_Message */
|
||||
require_once 'Zend/Wildfire/Plugin/FirePhp/Message.php';
|
||||
|
||||
/**
|
||||
* A message envelope that can be updated for the duration of the requet before
|
||||
* it gets flushed at the end of the request.
|
||||
*
|
||||
* @category Zend
|
||||
* @package Zend_Wildfire
|
||||
* @subpackage Plugin
|
||||
* @copyright Copyright (c) 2005-2010 Zend Technologies USA Inc. (http://www.zend.com)
|
||||
* @license http://framework.zend.com/license/new-bsd New BSD License
|
||||
*/
|
||||
class Zend_Wildfire_Plugin_FirePhp_TableMessage extends Zend_Wildfire_Plugin_FirePhp_Message
|
||||
{
|
||||
/**
|
||||
* The header of the table containing all columns
|
||||
* @var array
|
||||
*/
|
||||
protected $_header = null;
|
||||
|
||||
/**
|
||||
* The rows of the table
|
||||
* $var array
|
||||
*/
|
||||
protected $_rows = array();
|
||||
|
||||
/**
|
||||
* Constructor
|
||||
*
|
||||
* @param string $label The label of the table
|
||||
*/
|
||||
function __construct($label)
|
||||
{
|
||||
parent::__construct(Zend_Wildfire_Plugin_FirePhp::TABLE, null);
|
||||
$this->setLabel($label);
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the table header
|
||||
*
|
||||
* @param array $header The header columns
|
||||
* @return void
|
||||
*/
|
||||
public function setHeader($header)
|
||||
{
|
||||
$this->_header = $header;
|
||||
}
|
||||
|
||||
/**
|
||||
* Append a row to the end of the table.
|
||||
*
|
||||
* @param array $row An array of column values representing a row.
|
||||
* @return void
|
||||
*/
|
||||
public function addRow($row)
|
||||
{
|
||||
$this->_rows[] = $row;
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the actual message to be sent in its final format.
|
||||
*
|
||||
* @return mixed Returns the message to be sent.
|
||||
*/
|
||||
public function getMessage()
|
||||
{
|
||||
$table = $this->_rows;
|
||||
if($this->_header) {
|
||||
array_unshift($table,$this->_header);
|
||||
}
|
||||
return $table;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the row at the given index
|
||||
*
|
||||
* @param integer $index The index of the row
|
||||
* @return array Returns the row
|
||||
* @throws Zend_Wildfire_Exception
|
||||
*/
|
||||
public function getRowAt($index)
|
||||
{
|
||||
$count = $this->getRowCount();
|
||||
|
||||
if($index < 0 || $index > $count-1) {
|
||||
require_once 'Zend/Wildfire/Exception.php';
|
||||
throw new Zend_Wildfire_Exception('Row index('.$index.') out of bounds('.$count.')!');
|
||||
}
|
||||
|
||||
return $this->_rows[$index];
|
||||
}
|
||||
|
||||
/**
|
||||
* Sets the row on the given index to a new row
|
||||
*
|
||||
* @param integer $index The index of the row
|
||||
* @param array $row The new data for the row
|
||||
* @throws Zend_Wildfire_Exception
|
||||
*/
|
||||
public function setRowAt($index, $row)
|
||||
{
|
||||
$count = $this->getRowCount();
|
||||
|
||||
if($index < 0 || $index > $count-1) {
|
||||
require_once 'Zend/Wildfire/Exception.php';
|
||||
throw new Zend_Wildfire_Exception('Row index('.$index.') out of bounds('.$count.')!');
|
||||
}
|
||||
|
||||
$this->_rows[$index] = $row;
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the number of rows
|
||||
*
|
||||
* @return integer
|
||||
*/
|
||||
public function getRowCount()
|
||||
{
|
||||
return count($this->_rows);
|
||||
}
|
||||
|
||||
/**
|
||||
* Returns the last row of the table
|
||||
*
|
||||
* @return array Returns the last row
|
||||
* @throws Zend_Wildfire_Exception
|
||||
*/
|
||||
public function getLastRow()
|
||||
{
|
||||
$count = $this->getRowCount();
|
||||
|
||||
if($count==0) {
|
||||
require_once 'Zend/Wildfire/Exception.php';
|
||||
throw new Zend_Wildfire_Exception('Cannot get last row as no rows exist!');
|
||||
}
|
||||
|
||||
return $this->_rows[$count-1];
|
||||
}
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue