Procedural File: htmlhelper.inc.php
Source Location: /libs/htmlhelper.inc.php
Classes:
Page Details:
BIGACE - a PHP and MySQL based Web CMS.
Copyright (C) 2003-2005 Kevin Papst. BIGACE is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. BIGACE is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. For further information visit www.kevinpapst.de.
Tags:
Includes:
require_once(dirname(__FILE__).'/functions.inc.php') [line 35]
Required for some standard functions (like createMenuLink() for FORM action attribute)
createCheckBox [line 190]
void createCheckBox(
mixed $name, mixed $value, mixed $checked, [mixed $disabled = ''])
|
|
createFileInput [line 206]
void createFileInput(
mixed $name)
|
|
Creates an File Input Type with the given name.
createNamedCheckBox [line 181]
void createNamedCheckBox(
mixed $name, mixed $value, mixed $checked, [mixed $disabled = ''])
|
|
createNamedPasswordField [line 161]
void createNamedPasswordField(
mixed $name, mixed $value, mixed $max)
|
|
createNamedRadioButton [line 166]
void createNamedRadioButton(
mixed $name, mixed $value, mixed $selected)
|
|
createNamedSelectBox [line 210]
void createNamedSelectBox(
mixed $name, mixed $opt_name_val, [mixed $sel = ''], [mixed $onChange = ''], [mixed $disabled = false], [mixed $id = ''])
|
|
createNamedTextInputType [line 141]
void createNamedTextInputType(
mixed $name, mixed $value, mixed $max, [mixed $disabled = false])
|
|
createPasswordField [line 156]
void createPasswordField(
mixed $name, mixed $value, mixed $max)
|
|
createRadioButton [line 176]
void createRadioButton(
mixed $name, mixed $value, mixed $selected)
|
|
createSelectBox [line 234]
void createSelectBox(
mixed $name, mixed $opt_name_val, [mixed $sel = ''], [mixed $onChange = ''], [mixed $disabled = false])
|
|
createTable [line 37]
void createTable(
mixed $config, [mixed $cssPre = 'auto'])
|
|
createTextArea [line 195]
void createTextArea(
mixed $name, mixed $value, [mixed $rows = '10'], [mixed $cols = '50'], [mixed $wrap = ''])
|
|
createTextInputType [line 151]
void createTextInputType(
mixed $name, mixed $value, mixed $max, [mixed $disabled = false])
|
|
|