<?php
class phpmole_editor {
var $widget;
function phpmole_editor () {
/* do some initialization */
$this->widget = new GtkScintilla();
$this->widget->set_text('abcd');
}
}
?>
<?php
class phpmole_editor extends gtkScintilla {
function phpmole_editor () {
/* do some initialization */
GtkScintilla::GtkScintilla();
GtkScintilla::set_text('abcd');
}
}
?>