19 lines
509 B
PHP
Executable File
19 lines
509 B
PHP
Executable File
<?php
|
|
|
|
class SimpleOrderForm extends Zend_Form
|
|
{
|
|
public function __construct($options = null)
|
|
{
|
|
parent::__construct($options);
|
|
$this->setName('simpleorder');
|
|
|
|
//$id = new Zend_Form_Element_Hidden('id');
|
|
//$uuid = new Zend_Form_Element_Hidden('uuid');
|
|
|
|
$submit = new Zend_Form_Element_Submit('submit');
|
|
$submit->setLabel('下载/订购');
|
|
$submit->setAttrib('id', 'simpleorderbutton');
|
|
|
|
$this->addElements(array($submit));
|
|
}
|
|
} |