cHTML
CONTENIDO HTML generation
CONTENIDO provides the feature to build html code in your php script with the use of objects. So it is possible to generate valid markup without writing the code by yourself.
The big advantage of such a central functionality is that the changes at one place effect all other usages, for example to set a default attribut in the whole CONTENIDO markup. Because of these potential it is highly recommended to use the cHTML classes to build your html code.
cHTMLFormElement
The cHTMLFormElement class represents a form element. All the inheritanced classes are logically grouped by the form context.
Specified elements:
Class | Description | HTML element |
---|---|---|
The cHTMLButton class represents a button. | <button></button> | |
cHTMLCheckbox | cHTMLCheckbox class represents a checkbox. | <input type="checkbox" /> |
cHTMLHiddenField | cHTMLHiddenField class represents a hidden form field. | <input type="hidden" /> |
cHTMLOptionElement | cHTMLOptionElement class represents a select option element. | <option></option> |
cHTMLPasswordbox | cHTMLPasswordbox class represents a password form field. | <input type="password" /> |
cHTMLRadiobutton | cHTMLRadiobutton class represents a radio button. | <input type="radio" /> |
cHTMLSelectElement | cHTMLSelectElement class represents a select element. | <select></select> |
cHTMLTextarea | cHTMLTextarea class represents a textarea. | <textarea></textarea> |
cHTMLTextbox | cHTMLTextbox class represents a textbox. | <input type="text" /> |
cHTMLUpload | cHTMLUpload class represents a file upload element. | <input type="file" /> |
cHTMLContentElement
The cHTMLContentElement class represents a content element.
cHTMLCanvas | Â | cHTMLCanvas class can be used for creating graphics. | <canvas></canvas> |
cHTMLDiv | Â | cHTMLDiv class represents a div element. | <div></div> |
cHTMLFieldset | Â | cHTMLFieldset class represents a fieldset element. | <fieldset></fieldset> |
cHTMLFooter | Â | HTMLFooter class represents a footer. | <footer></footer> |
cHTMLForm | Â | cHTMLForm class represents a form. | <form></form> |
cHTMLHeader | Â | cHTMLHeader class represents a header. | <header></header> |
cHTMLHgroup | Â | cHTMLHgroup class represents a set of related headlines. | <hgroup></hgroup> |
cHTMLLabel | Â | cHTMLLabel class represents a form label. | <label></label> |
cHTMLLegend | Â | cHTMLLegend class represents a legend element. | <legend></legend> |
cHTMLLink | Â | cHTMLLink class represents a link. | <a></a> |
cHTMLList | Â | cHTMLList class represents a list. | <ul></ul>, <ol></ol> |
cHTMLListItem | Â | cHTMLListItem class represents a list item. | <li></li> |
cHTMLNav | Â | cHTMLNav class represents a navigation. | <nav></nav> |
cHTMLOptgroup | Â | cHTMLOptgroup class can be used for creating optgrops. | <optgroup></optgroup> |
cHTMLParagraph | Â | cHTMLParagraph class represents a paragraph. | <p></p> |
cHTMLScript | Â | cHTMLScript class represents a script. | <script></script> |
cHTMLSection | Â | cHTMLSection class represents a section within an article. | <section></section> |
cHTMLSpan | Â | cHTMLSpan class represents a span element. | <span></span> |
cHTMLTable | Â | cHTMLTable class represents a table. | <table></table> |
cHTMLTableBody | Â | cHTMLTableBody class represents a table body. | <tbody></tbody> |
cHTMLTableData | Â | cHTMLTableData class represents a table date. | <td></td> |
cHTMLTableHeader | Â | cHTMLTableHead class represents a table head. | <th></th> |
cHTMLTime | Â | cHTMLTime class represents a date/time. | <time></time> |
cHTMLVideo | Â | cHTMLVideo class represents a video. | <video></video> |
Â
cHTMLIFrame
The cHTMLIFrame class represents an iframe.
Â
Method | Description |
---|---|
setSrc(string $src) | This method sets the source of the iframe. |
setWidth(string $width) | This method sets the width of the iframe. |
setHeight(string $height) | This method sets the height of the iframe. |
setBorder(string $border) | This method sets the border of the iframe. |
cHTMLImage
The cHTMLImage class represents an image.
Method | Description |
---|---|
setSrc(string $src) | This method sets the source of the image. |
setWidth(string $width) | This method sets the width of the image. |
setHeight(string $height) | This method sets the height of the image. |
setBorder(string $border) | This method sets the border of the image. |
Â