for a detailed description, copyright and license information. */ if (false == class_exists('xajaxPlugin') || false == class_exists('xajaxPluginManager')) { $sBaseFolder = dirname(dirname(dirname(__FILE__))); $sXajaxCore = $sBaseFolder . '/xajax_core'; if (false == class_exists('xajaxPlugin')) require $sXajaxCore . '/xajaxPlugin.inc.php'; if (false == class_exists('xajaxPluginManager')) require $sXajaxCore . '/xajaxPluginManager.inc.php'; } /* Class: clsTableUpdater */ class clsTableUpdater extends xajaxResponsePlugin { /* String: sDefer Used to store the state of the scriptDeferral configuration setting. When script deferral is desired, this member contains 'defer' which will request that the browser defer loading of the javascript until the rest of the page has been loaded. */ var $sDefer; /* String: sJavascriptURI Used to store the base URI for where the javascript files are located. This enables the plugin to generate a script reference to it's javascript file if the javascript code is NOT inlined. */ var $sJavascriptURI; /* Boolean: bInlineScript Used to store the value of the inlineScript configuration option. When true, the plugin will return it's javascript code as part of the javascript header for the page, else, it will generate a script tag referencing the file by using the sJavascriptURI>. */ var $bInlineScript; /* Function: clsTableUpdater Constructs and initializes an instance of the table updater class. */ function clsTableUpdater() { $this->sDefer = ''; $this->sJavascriptURI = ''; $this->bInlineScript = true; } /* Function: configure Receives configuration settings set by or user script calls to configure>. sName - (string): The name of the configuration option being set. mValue - (mixed): The value being associated with the configuration option. */ function configure($sName, $mValue) { if ('scriptDeferral' == $sName) { if (true === $mValue || false === $mValue) { if ($mValue) $this->sDefer = 'defer '; else $this->sDefer = ''; } } else if ('javascript URI' == $sName) { $this->sJavascriptURI = $mValue; } else if ('inlineScript' == $sName) { if (true === $mValue || false === $mValue) $this->bInlineScript = $mValue; } } /* Function: generateClientScript Called by the during the script generation phase. This will either inline the script or insert a script tag which references the file based on the value of the bInlineScript> configuration option. */ function generateClientScript() { if ($this->bInlineScript) { echo "\n\n"; } else { echo "\n