Category Archives: SiteFusion
Sitefusion CKEditor v 3.0 – Xpi extension BETA 0.1
Installation : in sitefusion server dir “components” add files : sf_ckeditor.js sf_ckeditor.php.inc in sitefusion server dir “extensions” add file : sf_ckeditor@oracoltech.com.xpi Add this two lines of code in your project file : RequireExtension( “sf_ckeditor@oracoltech.com”); LoadClass( ‘sf_ckeditor’, ‘components’ ); Theme default … Continue reading
XUL SVG images :: easy with SiteFusion
With a little modification that will be implemented in the next version : add this code at the end of file : class/textAndImages.php.inc class XULImageSvg extends Node { public $remoteConstructor = ‘ImageSvg’; public $width = NULL; public $height = NULL; … Continue reading
XULStdAppMenu :: 10 lines of code to create really deeper menu in SiteFusion
USAGE : // Istantiate and add the classto the Application window $this->window->addChild( $top = new XULStdAppMenu() ); // Only create root menu is required, after you can “overwrite” and redeclare all menu // without any problem because after the first … Continue reading
XULAdvancedTabBox
XULAdvancedTabBox addTabbedPanel ( $name, $panel, [ $background = false]) $name = name of the tab $panel = The Component to added $background = will be add in background closeActiveTab ([ $e = NULL]) Close the active panel closeAll ([ $e = NULL], [ $leaveActive = … Continue reading