Category Archives: SiteFusion

The open-source PHP/XUL application client-server framework. Includes the SiteFusion application server and the platform-independent thin XUL client.

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

Posted in SiteFusion | Leave a comment

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

Posted in SiteFusion | Leave a comment

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

Posted in SiteFusion | Leave a comment

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

Posted in SiteFusion | Leave a comment