✏️ 正在编辑: FormSubmit.php
路径:
/srv/systems_dir/biblioteca_yuppie/library/Bootstrap/View/Helper/FormSubmit.php
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
<?php /** * View helper definition * * @category Helpers * @package Bootstrap_View * @subpackage Helper * @author Jaime Neto <contato@jaimeneto.com> */ require_once 'Bootstrap/View/Helper/FormButton.php'; /** * Helper to generate a submit button element * * @category Helpers * @package Bootstrap_View * @subpackage Helper * @author Jaime Neto <contato@jaimeneto.com> */ class Bootstrap_View_Helper_FormSubmit extends Bootstrap_View_Helper_FormButton { protected $_buttonType = 'submit'; public function formSubmit($name, $value = null, $attribs = null) { return $this->formButton($name, $value, $attribs); } }
💾 保存文件
← 返回文件管理器