Classes, interfaces and traits

html

Class for HTML code creation

« More »

html_inputfield

Class to create an HTML input field

« More »

html_passwordfield

Class to create an HTML password field

« More »

html_hiddenfield

Class to create an hidden HTML input field

« More »

html_radiobutton

Class to create HTML radio buttons

« More »

html_checkbox

Class to create HTML checkboxes

« More »

html_textarea

Class to create an HTML textarea

« More »

html_select

Builder for HTML drop-down menus Syntax:<pre> // create instance. arguments are used to set attributes of select-tag $select = new html_select(array('name' => 'fieldname'));

// add one option $select->add('Switzerland', 'CH'); // add multiple options $select->add(array('Switzerland','Germany'), array('CH','DE')); // generate pulldown with selection 'Switzerland' and return html-code // as second argument the same attributes available to instanciate can be used print $select->show('CH'); </pre>
« More »

html_table

Class to build an HTML table

« More »

rcube_output

Class for output generation

« More »