File size: 1.64Kb
<?php
/**
* SocialEngine
*
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
* @version $Id: Filter.php 9747 2012-07-26 02:08:08Z john $
* @author John
*/
/**
* @category Application_Core
* @package Core
* @copyright Copyright 2006-2020 Webligo Developments
* @license http://www.socialengine.com/license/
*/
class Core_Form_Admin_ManageMessage_Filter extends Engine_Form {
public function init() {
$this->clearDecorators()
->addDecorator('FormElements')
->addDecorator('Form')
->addDecorator('HtmlTag', array('tag' => 'div', 'class' => 'search'))
->addDecorator('HtmlTag2', array('tag' => 'div', 'class' => 'clear'));
$this->setAttribs(array(
'id' => 'filter_form',
'class' => 'global_form_box',
))
->setMethod('GET');
$this->addElement('Text', 'body', array(
'label' => 'Message',
'decorators' => array(
'ViewHelper',
array('Label', array('tag' => null, 'placement' => 'PREPEND')),
array('HtmlTag', array('tag' => 'div'))
),
));
$this->addElement('Hidden', 'id', array(
'order' => 10003,
));
$this->addElement('Button', 'search', array(
'label' => 'Search',
'type' => 'submit',
'ignore' => true,
));
//Set default action without URL-specified params
$params = array();
foreach (array_keys($this->getValues()) as $key) {
$params[$key] = null;
}
$this->setAction(Zend_Controller_Front::getInstance()->getRouter()->assemble($params));
}
}