Zeile 6 | Zeile 6 |
---|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* Website: http://mybb.com * License: http://mybb.com/about/license *
|
* $Id: class_form.php 5380 2011-02-21 12:04:43Z Tomm $
| * $Id$
|
*/
/**
| */
/**
|
Zeile 775 | Zeile 775 |
---|
function output_submit_wrapper($buttons) { global $plugins;
|
function output_submit_wrapper($buttons) { global $plugins;
|
$plugins->run_hooks_by_ref("admin_form_output_submit_wrapper", $buttons);
| $buttons = $plugins->run_hooks("admin_form_output_submit_wrapper", $buttons);
|
$return = "<div class=\"form_button_wrapper\">\n"; foreach($buttons as $button) {
| $return = "<div class=\"form_button_wrapper\">\n"; foreach($buttons as $button) {
|
Zeile 800 | Zeile 800 |
---|
function end() { global $plugins;
|
function end() { global $plugins;
|
$plugins->run_hooks_by_ref("admin_form_end", $this);
| $plugins->run_hooks("admin_form_end", $this);
|
if($this->_return == false) { echo "</form>";
| if($this->_return == false) { echo "</form>";
|
Zeile 866 | Zeile 866 |
---|
'row_options' => &$row_options, 'this' => &$this );
|
'row_options' => &$row_options, 'this' => &$this );
|
$plugins->run_hooks_by_ref("admin_formcontainer_output_row", $pluginargs);
| $plugins->run_hooks("admin_formcontainer_output_row", $pluginargs);
|
if($label_for != '') { $for = " for=\"{$label_for}\"";
| if($label_for != '') { $for = " for=\"{$label_for}\"";
|
Zeile 956 | Zeile 956 |
---|
{ global $plugins;
|
{ global $plugins;
|
$plugins->run_hooks("admin_formcontainer_end", $return);
| $hook = array( 'return' => &$return, 'this' => &$this ); $plugins->run_hooks("admin_formcontainer_end", $hook);
|
if($return == true) { return $this->_container->output($this->_title, 1, "general form_container {$this->extra_class}", true);
| if($return == true) { return $this->_container->output($this->_title, 1, "general form_container {$this->extra_class}", true);
|