19 lines
No EOL
380 B
PHP
19 lines
No EOL
380 B
PHP
<?php
|
|
|
|
class Admin_BlogCreate extends Fiktiv_Form
|
|
{
|
|
public function init() {
|
|
|
|
$this->addElement('Text', 'title', array(
|
|
'label' => 'Subject'
|
|
));
|
|
|
|
$this->addElement('Textarea', 'content', array(
|
|
'label' => 'Post'
|
|
));
|
|
|
|
$this->addElement('Submit', 'Submit', array(
|
|
'label' => 'Save'
|
|
));
|
|
}
|
|
} |