Source for file Page.php
Documentation is available at Page.php
* Form for handling static pages' data.
* @author Margus Sellin <margus@bitweb.ee>
* @copyright Copyright (C) 2011. All rights reserved. Margus Sellin
* Initializes the form with essential elements.
$title =
new Zend_Form_Element_Text('title');
$title->setLabel('Lehe pealkiri');
$title->setRequired(true);
$value =
new Zend_Form_Element_Textarea('value');
$value->setLabel('Lehe sisu');
$value->setRequired(false);
$this->addElement($title);
$this->addElement($value);
Documentation generated on Mon, 20 Jun 2011 05:43:07 +0300 by phpDocumentor 1.4.1