123456789101112131415161718192021222324252627282930 |
- <?php
- namespace form\flowdiagram;
- class Builder
- {
- /**
- * 步骤条
- * @param string $name 表单项名
- * @param string $title 标题
- * @param string $default 默认值
- * @return mixed
- */
- public function item($name = '', $title = '',$default1 = '',$default2 = '',$default3 = '')
- {
- return [
- 'name' => $name,
- 'title' => $title,
- 'value1' => $default1,
- 'value2' => $default2,
- 'value3' => $default3,
- ];
- }
- /**
- * @var array 需要加载的css
- */
- public $css = [
- 'flowdiagram.css'
- ];
- }
|