Archived
1
0
Fork 0
This repository has been archived on 2026-05-10. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
fiktivkod/application/forms/Admin_BlogCreate.php
2011-02-26 14:15:01 +01:00

25 lines
No EOL
562 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',
'class' => 'content',
'style' => 'width: 560px; height: 200px;'
));
$this->addElement('Text', 'tags', array(
'label' => 'Tags',
));
$this->addElement('Submit', 'Submit', array(
'label' => 'Save'
));
}
}