= USERLEVEL_ADMIN) { return false; } // do we already have it? if (is_dir($this->cke_dir) && is_file($this->cke_dir . '/ckeditor.js')) { // this is running while getting a new Plugin version if ($this->checkUpdate()) { $this->set_config('installer', '4-'.date('Ymd-H:i:s')); // this is a faked debug notice, since falldown is extract true with case 0, 1 or 2 } else { $this->set_config('installer', '3-'.date('Ymd-H:i:s')); // this will happen, if no further extract is necessary in case of an update return true; } } if (is_writable($this->cke_path)) { $zip = new ZipArchive; if ($zip->open($this->cke_path . '/' . $this->cke_zipfile) === true) { $zip->extractTo($this->cke_path); $zip->close(); $this->set_config('installer', '2-'.date('Ymd-H:i:s')); // returned by string[0], which is better than substr in this case // Check to remove every old ckeditor_(*)_standard-plus.zip files foreach (glob($this->cke_path . '/*.zip') as $filename) { if($this->cke_path . '/' . $this->cke_zipfile != $filename) { @unlink($filename); } } } else { $this->set_config('installer', '1-'.date('Ymd-H:i:s')); return false; } } else { $this->set_config('installer', '0-'.date('Ymd-H:i:s')); // do it again, Sam return false; } return true; } function introspect(&$propbag) { global $serendipity; $propbag->add('name', PLUGIN_EVENT_CKEDITOR_NAME); $propbag->add('description', PLUGIN_EVENT_CKEDITOR_DESC); $propbag->add('stackable', false); $propbag->add('author', 'Rustam Abdullaev, Ian'); $propbag->add('version', '1.3.1'); $propbag->add('copyright', 'GPL or LGPL License'); $propbag->add('requirements', array( 'serendipity' => '1.7', 'smarty' => '3.1.13', 'php' => '5.2.6' )); $propbag->add('event_hooks', array( 'backend_header' => true, 'css_backend' => true, 'backend_plugins_update' => true, 'backend_media_path_exclude_directories' => true, 'backend_wysiwyg' => true, 'backend_wysiwyg_finish' => true )); $propbag->add('configuration', array('path', 'plugpath', 'acf_off', 'toolbar_break')); $propbag->add('groups', array('BACKEND_EDITOR')); } function introspect_config_item($name, &$propbag) { global $serendipity; switch($name) { case 'path': $propbag->add('type', 'string'); $propbag->add('name', INSTALL_RELPATH); $propbag->add('description', ''); $propbag->add('default', 'plugins/serendipity_event_ckeditor/ckeditor/'); break; case 'plugpath': $propbag->add('type', 'string'); $propbag->add('name', PLUGIN_EVENT_CKEDITOR_INSTALL_PLUGPATH); $propbag->add('description', ''); $propbag->add('default', $serendipity['serendipityHTTPPath'] . 'plugins/'); break; case 'acf_off': $propbag->add('type', 'boolean'); $propbag->add('name', PLUGIN_EVENT_CKEDITOR_CKEACF_OPTION); $propbag->add('description', 'http://ckeditor.com/blog/Integrating-Plugins-with-Advanced-Content-Filter'); $propbag->add('default', 'false'); break; case 'toolbar_break': $propbag->add('type', 'boolean'); $propbag->add('name', PLUGIN_EVENT_CKEDITOR_TBLB_OPTION); $propbag->add('description', ''); $propbag->add('default', 'true'); break; default: return false; } return true; } function generate_content(&$title) { $title = $this->title; } function example() { $installer = $this->get_config('installer'); // Can't use method return value in write context in '' with substr(), get_config() and isset() $parts = explode(':', $this->checkUpdateVersion[0]); // this is ckeditor only echo PLUGIN_EVENT_CKEDITOR_REVISION_TITLE; echo "\n\n\n"; if( isset($installer) && !empty($installer) ) { switch ($installer[0]) { case '4': // this won't happen, since case 2 is true - just a fake echo '

Check Plugin Update Message: NO CONFIG SET OR NO MATCH -> config_set: "last_'.$parts[0].'_version:'. $parts[1].'"

'; break; case '3': echo '

Installer Update Message: Check Update found false, no unpack needed. Plugin upgrade successfully done or has been triggered to be checked by an other Spartacus Plugin update!

'; break; case '2': echo '

Installer Message: Extracting the zip to ' . $this->cke_path . ' directory done!

'; break; case '1': echo '

Installer Error[1]: Extracting the zip to ' . $this->cke_path . ' directory failed!
Please extract ' . $this->cke_zipfile . ' by hand.

'; break; case '0': echo '

Installer Error[0]: Due to a writing permission error, extracting the zip to ' . $this->cke_path . ' directory failed!
Please set "/plugins" or "/plugins/serendipity_event_ckeditor" directory and files correct writing permissions and extract ' . $this->cke_zipfile . ' by hand or try again and remove(!) this plugin from your plugin list and install it again.

'; break; } $this->set_config('installer', ''); // can't use serendipity_plugin_api::remove_plugin_value($this->instance, array('installer')); here, since it delivers the wrong instance } #echo $installer[0] . ' - ' . $this->instance; // this debug message on the other hand will do well, if all went through w/o install() returning false echo PLUGIN_EVENT_CKEDITOR_INSTALL; echo PLUGIN_EVENT_CKEDITOR_CONFIG; } /** * Check update versions to perform unzip and create config values * @access private * @return boolean */ private function checkUpdate() { $doupdate = false; foreach(array_values($this->checkUpdateVersion) AS $package) { $match = explode(':', $package); // always set and extract if not match if ($this->get_config('last_'.$match[0].'_version') == $match[1]) { $doupdate = false; } else { $this->set_config('last_'.$match[0].'_version', $match[1]); $doupdate = true; break; // this is possibly needed to force install upgrade routines } } return $doupdate ? true : false; } /** * empty a directory using the Standard PHP Library (SPL) iterator * @param string directory */ function empty_dir($dir) { $iterator = new RecursiveIteratorIterator(new RecursiveDirectoryIterator($dir), RecursiveIteratorIterator::CHILD_FIRST); foreach ($iterator as $file) { if ($file->isFile()) { @unlink($file->__toString()); } else { @rmdir($file->__toString()); } } } function event_hook($event, &$bag, &$eventData, $addData = null) { global $serendipity; $hooks = &$bag->get('event_hooks'); if (isset($hooks[$event])) { switch($event) { case 'backend_header': if (isset($serendipity['wysiwyg']) && $serendipity['wysiwyg'] && isset($eventData)) { $relpath = htmlspecialchars($this->get_config('path')); $plgpath = htmlspecialchars($this->get_config('plugpath')); $acfoff = serendipity_db_bool($this->get_config('acf_off')) ? 'true' : 'false'; if(!isset($_COOKIE['KCFINDER_uploadurl']) || empty($_COOKIE['KCFINDER_uploadurl'])) { setcookie('KCFINDER_uploadurl', serialize($serendipity['serendipityHTTPPath'] . $serendipity['uploadHTTPPath']), time()+60*60*24*30, $serendipity['serendipityHTTPPath'], $_SERVER['HTTP_HOST'], false); } ?> /* BACKEND MESSAGES ----------------------------------------------------------------- */ .msg_error, .msg_success, .msg_notice, .msg_dialogue { display:block; margin: 1.5em 0; padding: 10px; } .msg_error { background: #f2dede; border: 1px solid #e4b9b9; color: #b94a48; } .msg_success { background: #dff0d8; border: 1px solid #c1e2b3; color: #468847; } .msg_notice { background: #fcf8e3; border: 1px solid #f7ecb5; color: #c09853; } .msg_dialogue { background: #eee; border: 1px solid #aaa; color: #777; } install(); break; case 'backend_media_path_exclude_directories': $eventData[".thumbs"] = true; return true; break; case 'backend_wysiwyg': $eventData['skip'] = true; // this skips htmlarea drop-in if (preg_match('@^nugget@i', $eventData['item'])) { // switch to finisher, in case of nuggets $this->event_hook('backend_wysiwyg_finish', $bag, $eventData); } else { // this builds both textareas of entry forms only ?> empty_dir(dirname(__FILE__) . '/kcfinder/.thumbs'); if (!is_dir(dirname(__FILE__) . '/kcfinder/.thumbs')) @rmdir(dirname(__FILE__) . '/kcfinder/.thumbs'); } return true; break; default: return false; } } else { return false; } } } ?>