<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = $GLOBALS['dropdowns']['violation_type'];
echo CreateHtmlDom::build($list, 'type', $this->_record->type());
<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = $GLOBALS['dropdowns']['item_condition'];
echo CreateHtmlDom::build($list, 'condition', $this->_record->condition());
<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
require_once EBOOK_HELPERS . DS . 'dropdowns.php';
//initializing variables
$list = $GLOBALS['dropdowns']['gateways'];
echo CreateHtmlDom::build($list, 'gateway', $this->_record->gateway());
<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = $GLOBALS['dropdowns']['availability'];
echo CreateHtmlDom::build($list, 'availability', $this->_record->availability());
/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$record =& JTable::getInstance('byrdlist_categories', 'Table');
$list = $record->getList();
$array = array();
if (is_array($list)) {
    foreach ($list as $id => $object) {
        if ($id == $this->_record->id()) {
            continue;
        }
        $array[$id] = $object->name();
    }
}
echo CreateHtmlDom::build($array, '_categories_id', $this->_record->parent_id());
<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = $GLOBALS['dropdowns']['auction_end'];
echo CreateHtmlDom::build($list, 'auction_end', $this->_record->auction_end());
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = array('0' => ' -- No -- ');
$query = "SELECT * FROM `#__byrdlist_listings` as `listings`" . " WHERE `listings`.`published` = '1'" . " AND `listings`.`type` = 'financial'" . " ORDER BY `listings`.`created_on` ASC";
//loading resources
$db =& JFactory::getDBO();
$db->setQuery($query);
$results = $db->loadAssocList();
if ($results) {
    foreach ($results as $result) {
        $instance = JTable::getInstance($this->_table, 'Table');
        //reasons to continue
        if (!$instance->load($result['id'])) {
            continue;
        }
        if ($instance->isClosed()) {
            continue;
        }
        $list[$result['id']] = $instance->name();
    }
}
echo CreateHtmlDom::build($list, '_financial_id', $this->_record->availability());
<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = $GLOBALS['dropdowns']['campaign_ends'];
echo CreateHtmlDom::build($list, 'campaign_ends', $this->_record->campaign_ends());
<?php

/**
 * Joomla! 1.5 component reservation
 *
 * @version $Id: reservation.php 2010-06-02 12:34:25 svn $
 * @author 
 * @package Joomla
 * @subpackage reservation
 * @license Copyright (c) 2010 - All Rights Reserved
 *
 * 
 *
 *
 */
// no direct access
defined('_JEXEC') or die('Restricted access');
require_once EBOOK_EVERY . DS . 'dom' . DS . 'create_html_dom.php';
//initializing variables
$list = $GLOBALS['dropdowns']['categories'];
echo CreateHtmlDom::build($list, 'category_id');
//, $this->_record->type() );
?>