22 lines
413 B
PHP
22 lines
413 B
PHP
<?php
|
|
|
|
class Application_Form_EditHistoryFile extends Application_Form_EditHistory
|
|
{
|
|
const ID_PREFIX = "his_file_";
|
|
|
|
public function init() {
|
|
|
|
parent::init();
|
|
|
|
$this->setDecorators(
|
|
array(
|
|
array('ViewScript', array('viewScript' => 'form/edit-history-file.phtml'))
|
|
)
|
|
);
|
|
}
|
|
|
|
public function createFromTemplate($template, $required) {
|
|
|
|
parent::createFromTemplate($template, $required);
|
|
}
|
|
} |