<?php
/**
*
* LICENSE
*
* This source file is subject to the new BSD license
* It is available through the world-wide-web at this URL:
* http://www.petala-azul.com/bsd.txt
* 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 geral@petala-azul.com so we can send you a copy immediately.
*
* @package Bvb_Grid
* @copyright Copyright (c) (http://www.petala-azul.com)
* @license http://www.petala-azul.com/bsd.txt New BSD License
* @version $Id$
* @author Bento Vilas Boas <geral@petala-azul.com >
*/
class Bvb_Grid_Filters_Render_Table_Number extends Bvb_Grid_Filters_Render_RenderAbstract
{
/**
* @see library/Bvb/Grid/Filters/Render/Bvb_Grid_Filters_Render_RenderAbstract::getChilds()
*/
public function getChilds ()
{
return array('from', 'to');
}
/**
* Retuns current conditions
*
* @return array
*/
public function getConditions ()
{
return array('from' => '>=', 'to' => '<=');
}
/**
* @see library/Bvb/Grid/Filters/Render/Bvb_Grid_Filters_Render_RenderInterface::render()
*/
public function render ()
{
$this->removeAttribute('id');
if ( ! $this->hasAttribute('style') ) $this->setAttribute('style', 'width:50px !important;');
return '<span>' . $this->__('From:') . "</span>"
. $this->getView()->formText($this->getFieldName() . '[from]',
$this->getDefaultValue('from'),
array_merge($this->getAttributes(),
array('id' => 'filter_' . $this->getFieldName() . '_from')))
. "<br><span>" . $this->__('To:') . "</span>"
. $this->getView()->formText($this->getFieldName() . '[to]',
$this->getDefaultValue('to'),
array_merge($this->getAttributes(),
array('id' => 'filter_' . $this->getFieldName() . '_to')));
}
}
|