Ejemplo n.º 1
0
 function import()
 {
     $mainframe = JFactory::getApplication();
     $this->setState('action', 'install');
     switch (JRequest::getWord('installtype')) {
         case 'folder':
             $package = $this->_getPackageFromFolder();
             break;
         case 'upload':
             $package = $this->_getPackageFromUpload();
             break;
         default:
             $this->setState('message', 'No Install Type Found');
             return false;
             break;
     }
     // Was the package unpacked?
     if (!$package) {
         $this->setState('message', 'Unable to find install package');
         return false;
     }
     // Get a database connector
     //$db = & JFactory::getDBO();
     // Get an installer instance
     require_once JPATH_COMPONENT . DS . 'helpers' . DS . 'restorer.php';
     $installer = JCKRestorer::getInstance();
     // Install the package
     if (!$installer->install($package['dir'])) {
         // There was an error installing the package
         $msg = JText::sprintf('COM_INSTALLER_INSTALL_ERROR', JText::_('COM_INSTALLER_TYPE_TYPE_' . strtoupper($package['type'])));
         $result = false;
     } else {
         // Package installed sucessfully
         $msg = JText::sprintf('COM_INSTALLER_INSTALL_SUCCESS', JText::_('COM_INSTALLER_TYPE_TYPE_' . strtoupper($package['type'])));
         $result = true;
     }
     // Set some model state values
     $mainframe->enqueueMessage($msg);
     $this->setState('name', $installer->get('name'));
     $this->setState('result', $result);
     $this->setState('message', $installer->message);
     $this->setState('extension.message', $installer->get('extension.message'));
     // Cleanup the install files
     if (!is_file($package['packagefile'])) {
         $config = JFactory::getConfig();
         $package['packagefile'] = $config->get('config.tmp_path') . DS . $package['packagefile'];
     }
     JInstallerHelper::cleanupInstall($package['packagefile'], $package['extractdir']);
     return $result;
 }
Ejemplo n.º 2
0
    public function onSync()
    {
        if (!$this->canDo->get('jckman.sync')) {
            $this->app->redirect(JRoute::_('index.php?option=com_jckman&view=cpanel', false), JText::_('COM_JCKMAN_PLUGIN_PERM_NO_SYNC'), 'error');
            return false;
        }
        jimport('joomla.filesystem.file');
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'pluginoverrides.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins' . DS . 'editor' . DS . 'pluginoverrides.php';
        if (!JFile::copy($src, $dest)) {
            $this->app->enqueueMessage(JText::_('COM_JCKMAN_CPANEL_UNABLE_MOVE_PLUGINOVERRIDES_PLUGIN'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'acl.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins' . DS . 'editor' . DS . 'acl.php';
        if (!JFile::copy($src, $dest)) {
            $this->app->enqueueMessage(JText::_('COM_JCKMAN_CPANEL_UNABLE_MOVE_ACL_PLUGIN'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'components.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins' . DS . 'toolbar' . DS . 'components.php';
        if (!JFile::copy($src, $dest)) {
            $this->app->enqueueMessage(JText::_('COM_JCKMAN_CPANEL_UNABLE_MOVE_COMPONENTS_PLUGIN'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'plugins.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins.php';
        if (!JFile::copy($src, $dest)) {
            $this->app->enqueueMessage(JText::_('COM_JCKMAN_CPANEL_UNABLE_MOVE_BASE_PLUGIN'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'scayt.xml';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'plugins' . DS . 'scayt' . DS . 'scayt.xml';
        if (!JFile::copy($src, $dest)) {
            $this->app->enqueueMessage(JText::_('COM_JCKMAN_CPANEL_UNABLE_MOVE_SCAYT_PLUGIN'));
        }
        //Lets try and restore  broken or removed plugins from backup
        require_once JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'helpers' . DS . 'restorer.php';
        $restorer = JCKRestorer::getInstance();
        $srcBase = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'plugins' . DS;
        $destBase = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'plugins' . DS;
        $folders = JFolder::folders($srcBase);
        foreach ($folders as $folder) {
            $src = $srcBase . $folder;
            if (!$restorer->install($src)) {
                $this->app->enqueueMessage(JText::sprintf('COM_JCKMAN_CPANEL_UNABLE_RESTORE_FOLDER', $folder), 'error');
            } else {
                $this->app->enqueueMessage(JText::sprintf('COM_JCKMAN_CPANEL_SUCESSFULLY_RESTORE_FOLDER', $folder));
            }
        }
        //check whether plugin is not a core plugin
        //if its not iterate through and see if there are files missing
        //then delete the plugin if there are
        $db = JFactory::getDBO();
        $query = 'SELECT p.id, p.name FROM `#__jckplugins` p WHERE p.iscore = 0';
        $results = $db->setQuery($query)->loadObjectList();
        if (!empty($results)) {
            for ($i = 0; $i < count($results); $i++) {
                if (!JFolder::exists(JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'plugins' . DS . $results[$i]->name)) {
                    $query = 'DELETE FROM #__jcktoolbarplugins
								WHERE pluginid =' . $results[$i]->id;
                    $db->setQuery($query)->query();
                    $query = 'DELETE FROM #__jckplugins
								WHERE id =' . $results[$i]->id;
                    $db->setQuery($query)->query();
                }
            }
            //end for loop
        }
        //check for plugins that have not been added to layout -- legacy check
        $query = 'SELECT id,name FROM `#__jcktoolbars`';
        $toolbars = $db->setQuery($query)->loadObjectList();
        $JCKfolder = CKEDITOR_LIBRARY . DS . 'toolbar';
        $values = array();
        if (!empty($toolbars)) {
            require_once CKEDITOR_LIBRARY . DS . 'toolbar.php';
            //update core plugins layout if needed
            foreach ($toolbars as $row) {
                // get the total number of core plugin records
                $sql = $db->getQuery(true);
                $sql->select('COUNT(*)')->from('#__jcktoolbarplugins tp')->join('INNER', '#__jckplugins p ON tp.pluginid = p.id')->where('tp.toolbarid =' . (int) $row->id)->where('p.iscore = 1');
                $totalRows = $db->setQuery($sql)->loadResult();
                if (!$totalRows) {
                    $filename = $JCKfolder . DS . $row->name . '.php';
                    require_once $filename;
                    $classname = 'JCK' . ucfirst($row->name);
                    $toolbar = new $classname();
                    $sql = $db->getQuery(true);
                    $sql->select('p.id, p.title')->from('#__jckplugins p')->join('LEFT', '#__jckplugins parent ON parent.id = p.parentid AND parent.published = 1')->where('p.title != ""')->where('p.published = 1')->where('p.iscore = 1')->where('(p.parentid IS NULL OR parent.published = 1)');
                    $allplugins = $db->setQuery($sql)->loadObjectList();
                    $values = array();
                    //fix toolbar values or they will get wiped out
                    $l = 1;
                    $n = 1;
                    $j = 1;
                    foreach (get_object_vars($toolbar) as $k => $v) {
                        if ($v) {
                            $n = $n > $v ? $n : $v;
                        }
                        if ($l < $n) {
                            $l = $n;
                            $j = 1;
                        }
                        for ($m = 0; $m < count($allplugins); $m++) {
                            if ($k == $allplugins[$m]->title) {
                                $values[] = '(' . (int) $row->id . ',' . (int) $allplugins[$m]->id . ',' . $n . ',' . $j . ',1)';
                                break;
                            }
                            if (strpos($k, 'brk_') !== false) {
                                $id = preg_match('/[0-9]+$/', $k);
                                $id = $id * -1;
                                $values[] = '(' . (int) $row->id . ',' . $id . ',' . $n . ',' . $j . ',1)';
                                $n++;
                                break;
                            }
                        }
                        $j++;
                    }
                    if (!empty($values)) {
                        $query = 'INSERT INTO #__jcktoolbarplugins(toolbarid,pluginid,row,ordering,state) VALUES ' . implode(',', $values);
                        $db->setQuery($query);
                        if (!$db->query()) {
                            JCKHelper::error($db->getErrorMsg());
                        }
                    }
                }
            }
            //update non core plugins layout
            $values = array();
            foreach ($toolbars as $row) {
                $query = 'SELECT id,title FROM `#__jckplugins` p WHERE p.title != "" AND p.iscore = 0  AND p.published = 1' . ' AND NOT EXISTS(SELECT 1 FROM  #__jcktoolbarplugins tp WHERE tp.pluginid = p.id AND tp.toolbarid = ' . $row->id . ')';
                $plugins = $db->setQuery($query)->loadObjectList();
                $tmpfilename = $JCKfolder . DS . $row->name . '.php';
                if (!file_exists($tmpfilename)) {
                    continue;
                }
                //skip
                require_once $tmpfilename;
                $classname = 'JCK' . ucfirst($row->name);
                $toolbar = new $classname();
                $rowDetail = JCKHelper::getNextLayoutRow($row->id);
                foreach (get_object_vars($toolbar) as $k => $v) {
                    foreach ($plugins as $plugin) {
                        if ($plugin->title == $k) {
                            $values[] = '(' . $row->id . ',' . $plugin->id . ',' . $rowDetail->rowid . ',' . $rowDetail->rowordering . ',1)';
                            $rowDetail->rowordering++;
                        }
                    }
                }
            }
        }
        //Now add plugins to layouts
        if (!empty($values)) {
            $query = 'INSERT INTO #__jcktoolbarplugins(toolbarid,pluginid,row,ordering,state) VALUES ' . implode(',', $values) . ' ON DUPLICATE KEY UPDATE toolbarid = VALUES(toolbarid),pluginid = VALUES(pluginid)';
            $db->setQuery($query);
            if (!$db->query()) {
                JCKHelper::error($db->getErrorMsg());
            }
        }
        //Reload Toolbar if editor is re-installed
        jckimport('event.observable.editor');
        $obs = new JCKEditorObservable('toolbars');
        $handle = $obs->getEventHandler();
        $query = 'SELECT * FROM `#__jcktoolbars` t WHERE exists(SELECT 1 FROM  #__jcktoolbarplugins tp WHERE tp.toolbarid  = t.id)';
        $rowresults = $db->setQuery($query)->loadObjectList();
        foreach ($rowresults as $row) {
            $id = $row->id;
            $name = $row->name;
            $title = $row->title;
            switch ($name) {
                case 'publisher':
                case 'full':
                case 'basic':
                case 'blog':
                case 'image':
                case 'mobile':
                    $isNew = false;
                    break;
                default:
                    $isNew = true;
                    break;
            }
            //end switch
            $handle->onSave($id, $name, $name, $title, $isNew);
        }
        //restore state of published/unpublished plugins
        $obs = new JCKEditorObservable('list');
        $handle = $obs->getEventHandler();
        $where = array();
        $where[] = ' WHERE p.published = 1';
        $where[] = ' WHERE p.published = 0';
        $state = array(1, 0);
        $count = count($where);
        $db = JFactory::getDBO();
        for ($i = 0; $i < $count; $i++) {
            $query = 'SELECT id FROM `#__jckplugins` p' . $where[$i] . ' AND p.iscore = 1 AND type="plugin"';
            $results = $db->setQuery($query)->loadColumn();
            $handle->onPublish($results, $state[$i]);
        }
        //restore language overrides
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'overrides';
        $dest = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'language' . DS . 'overrides';
        $files = JFolder::files($src);
        foreach ($files as $file) {
            if ($file == 'index.html') {
                continue;
            }
            $source = $src . '/' . $file;
            $path = $dest . '/' . $file;
            if (JFile::exists($file)) {
                $this->app->enqueueMessage(JText::sprintf('COM_JCKMAN_CPANEL_LANGUAGE_EXISTS', $file), 'warning');
            } elseif (!JFile::copy($source, $path)) {
                $this->app->enqueueMessage(JText::sprintf('COM_JCKMAN_CPANEL_UNABLE_RESTORE_LANGUAGE', $file), 'error');
            } else {
                $this->app->enqueueMessage(JText::sprintf('COM_JCKMAN_CPANEL_SUCESSFULLY_RESTORE_LANGUAGE', $file));
            }
        }
        $this->app->enqueueMessage(JText::_('COM_JCKMAN_CPANEL_EDITOR_SYNCHRONIZED'));
    }
Ejemplo n.º 3
0
    public function onSync()
    {
        $mainframe = JFactory::getApplication();
        jimport('joomla.filesystem.file');
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'pluginoverrides.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins' . DS . 'editor' . DS . 'pluginoverrides.php';
        if (!JFile::copy($src, $dest)) {
            $mainframe->enqueueMessage(JText::_('Unable to move pluginoverrides JCK plugin!'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'acl.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins' . DS . 'editor' . DS . 'acl.php';
        if (!JFile::copy($src, $dest)) {
            $mainframe->enqueueMessage(JText::_('Unable to move ACL JCK plugin!'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'components.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins' . DS . 'toolbar' . DS . 'components.php';
        if (!JFile::copy($src, $dest)) {
            $mainframe->enqueueMessage(JText::_('Unable to move components JCK toolbar plugin!'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'plugins.php';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'jckeditor' . DS . 'includes' . DS . 'ckeditor' . DS . 'plugins.php';
        if (!JFile::copy($src, $dest)) {
            $mainframe->enqueueMessage(JText::_('Unable to move base plugins file to JCK library!'));
        }
        $src = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'scayt.xml';
        $dest = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'plugins' . DS . 'scayt' . DS . 'scayt.xml';
        if (!JFile::copy($src, $dest)) {
            $mainframe->enqueueMessage(JText::_('Unable to move scayt JCK plugin!'));
        }
        //Lets try and restore  broken or removed plugins from backup
        require_once JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'helpers' . DS . 'restorer.php';
        $restorer = JCKRestorer::getInstance();
        $srcBase = JPATH_ADMINISTRATOR . DS . 'components' . DS . 'com_jckman' . DS . 'editor' . DS . 'plugins' . DS;
        $destBase = JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'plugins' . DS;
        $folders = JFolder::folders($srcBase);
        foreach ($folders as $folder) {
            $src = $srcBase . $folder;
            if (!$restorer->install($src)) {
                $mainframe->enqueueMessage(JText::_('Unable to restore ' . $folder . ' JCK plugin!'), 'error');
            } else {
                $mainframe->enqueueMessage(JText::_('Sucessfully restored ' . $folder . ' JCK plugin!'));
            }
        }
        //check whether plugin is not a core plugin
        //if its not iterate through and see if there are files missing
        //then delete the plugin if there are
        $db = JFactory::getDBO();
        $query = 'SELECT p.id, p.name FROM `#__jckplugins` p WHERE p.iscore = 0';
        $db->setQuery($query);
        $results = $db->loadObjectList();
        if (!empty($results)) {
            for ($i = 0; $i < count($results); $i++) {
                if (!JFolder::exists(JPATH_PLUGINS . DS . 'editors' . DS . 'jckeditor' . DS . 'plugins' . DS . $results[$i]->name)) {
                    $query = 'DELETE FROM #__jcktoolbarplugins
								WHERE pluginid =' . $results[$i]->id;
                    $db->setQuery($query);
                    $db->query();
                    $query = 'DELETE FROM #__jckplugins
								WHERE id =' . $results[$i]->id;
                    $db->setQuery($query);
                    $db->query();
                }
            }
            //end for loop
        }
        //check for plugins that have not been added to layout -- legacy check
        $query = 'SELECT id,name FROM `#__jcktoolbars`';
        $db->setQuery($query);
        $toolbars = $db->loadObjectList();
        $JCKfolder = CKEDITOR_LIBRARY . DS . 'toolbar';
        $values = array();
        if (!empty($toolbars)) {
            require_once CKEDITOR_LIBRARY . DS . 'toolbar.php';
            //update core plugins layout if needed
            foreach ($toolbars as $row) {
                // get the total number of core plugin records
                $query = 'SELECT COUNT(*)' . ' FROM #__jcktoolbarplugins tp' . ' JOIN #__jckplugins p ON tp.pluginid = p.id' . ' WHERE tp.toolbarid =' . (int) $row->id . ' AND p.iscore = 1';
                $db->setQuery($query);
                $totalRows = $db->loadResult();
                if (!$totalRows) {
                    $filename = $JCKfolder . DS . $row->name . '.php';
                    require_once $filename;
                    $classname = 'JCK' . ucfirst($row->name);
                    $toolbar = new $classname();
                    $query = 'SELECT p.id, p.title' . ' FROM #__jckplugins p' . ' LEFT JOIN #__jckplugins parent on parent.id = p.parentid' . ' AND parent.published = 1' . ' WHERE p.title != ""' . ' AND p.published = 1' . ' AND p.iscore = 1' . ' AND(p.parentid IS NULL OR parent.published = 1)';
                    $db->setQuery($query);
                    $allplugins = $db->loadObjectList();
                    $values = array();
                    //fix toolbar values or they will get wiped out
                    $l = 1;
                    $n = 1;
                    $j = 1;
                    foreach (get_object_vars($toolbar) as $k => $v) {
                        if ($v) {
                            $n = $n > $v ? $n : $v;
                        }
                        if ($l < $n) {
                            $l = $n;
                            $j = 1;
                        }
                        for ($m = 0; $m < count($allplugins); $m++) {
                            if ($k == $allplugins[$m]->title) {
                                $values[] = '(' . (int) $row->id . ',' . (int) $allplugins[$m]->id . ',' . $n . ',' . $j . ',1)';
                                break;
                            }
                            if (strpos($k, 'brk_') !== false) {
                                $id = preg_match('/[0-9]+$/', $k);
                                $id = $id * -1;
                                $values[] = '(' . (int) $row->id . ',' . $id . ',' . $n . ',' . $j . ',1)';
                                $n++;
                                break;
                            }
                        }
                        $j++;
                    }
                    if (!empty($values)) {
                        $query = 'INSERT INTO #__jcktoolbarplugins(toolbarid,pluginid,row,ordering,state) VALUES ' . implode(',', $values);
                        $db->setQuery($query);
                        if (!$db->query()) {
                            JError::raiseWarning(500, $db->getErrorMsg());
                        }
                    }
                }
            }
            //update non core plugins layout
            $values = array();
            foreach ($toolbars as $row) {
                $query = 'SELECT id,title FROM `#__jckplugins` p WHERE p.title != "" AND p.iscore = 0  AND p.published = 1' . ' AND NOT EXISTS(SELECT 1 FROM  #__jcktoolbarplugins tp WHERE tp.pluginid = p.id AND tp.toolbarid = ' . $row->id . ')';
                $db->setQuery($query);
                $plugins = $db->loadObjectList();
                $tmpfilename = $JCKfolder . DS . $row->name . '.php';
                if (!file_exists($tmpfilename)) {
                    continue;
                }
                //skip
                require_once $tmpfilename;
                $classname = 'JCK' . ucfirst($row->name);
                $toolbar = new $classname();
                $rowDetail = JCKHelper::getNextLayoutRow($row->id);
                foreach (get_object_vars($toolbar) as $k => $v) {
                    foreach ($plugins as $plugin) {
                        if ($plugin->title == $k) {
                            $values[] = '(' . $row->id . ',' . $plugin->id . ',' . $rowDetail->rowid . ',' . $rowDetail->rowordering . ',1)';
                            $rowDetail->rowordering++;
                        }
                    }
                }
            }
        }
        //Now add plugins to layouts
        if (!empty($values)) {
            $query = 'INSERT INTO #__jcktoolbarplugins(toolbarid,pluginid,row,ordering,state) VALUES ' . implode(',', $values) . ' ON DUPLICATE KEY UPDATE toolbarid = VALUES(toolbarid),pluginid = VALUES(pluginid)';
            $db->setQuery($query);
            if (!$db->query()) {
                JError::raiseWarning(100, $db->getErrorMsg());
            }
        }
        //Reload Toolbar if editor is re-installed
        jckimport('event.observable.editor');
        $obs = new JCKEditorObservable('toolbars');
        $handle = $obs->getEventHandler();
        $query = 'SELECT * FROM `#__jcktoolbars` t WHERE exists(SELECT 1 FROM  #__jcktoolbarplugins tp WHERE tp.toolbarid  = t.id)';
        $db->setQuery($query);
        $rowresults = $db->loadObjectList();
        foreach ($rowresults as $row) {
            $id = $row->id;
            $name = $row->name;
            $title = $row->title;
            switch ($name) {
                case 'publisher':
                case 'full':
                case 'basic':
                case 'blog':
                case 'image':
                    $isNew = false;
                    break;
                default:
                    $isNew = true;
                    break;
            }
            //end switch
            $handle->onSave($id, $name, $name, $title, $isNew);
        }
        //end forloop
        //restore state of published/unpublished plugins
        $obs = new JCKEditorObservable('list');
        $handle = $obs->getEventHandler();
        $where = array();
        $where[] = ' WHERE p.published = 1';
        $where[] = ' WHERE p.published = 0';
        $state = array(1, 0);
        $count = count($where);
        for ($i = 0; $i < $count; $i++) {
            $db = JFactory::getDBO();
            $query = 'SELECT id FROM `#__jckplugins` p' . $where[$i] . ' AND p.iscore = 1 AND type="plugin"';
            $db->setQuery($query);
            $results = $db->loadResultArray();
            $handle->onPublish($results, $state[$i]);
        }
        //end for loop
        $mainframe->enqueueMessage(JText::_('Editor has been synchronized'));
    }