Source for file i_dynamic_viewable.class.php
Documentation is available at i_dynamic_viewable.class.php
// *** Tangra (Application Framework and Tools for PHP)
* Contains interface I_Dynamic_Viewable
require_once(TANGRA_MAIN_DIR. 'web_site/tple_exports.class.php');
* Shows that this class is dynamically vieable
* Returns HTML representation of the object
* Normally such classes have to use Template engine (tple) to fetch the HTML using exports $exports
* @param TPLE_Exports $exports
public function get_html(TPLE_Exports $exports);
|