* @copyright 2004 by http://wombat.exit0.net * @package wombatSite * @subpackage cmHtml */ /** * Dialog interface * * @todo check user before display! * * @version 1.0.0 * @package wombatSite * @subpackage cmHtml */ class wbDialog_Example extends wbDialog { /** * init language depending data * * @access private */ function _init() { $this->_options = array( 'width' => 500, 'height' => 500, 'class' => 'Example', 'title' => _( 'Wombat Dialog Example' ), 'brief' => _( 'This dialog element shows how dialog works.' ), 'name' => 'example', 'vars' => '', 'type' => 'inline', ); return true; }} ?>