function BB_SavePage() { global $bb_dir, $bb_file, $bb_relroot, $bb_page, $bb_writeperms; // Calculate the number of languages - allow for faster cache selection. $bb_page["onelang"] = true; $numlang = 0; foreach ($bb_page["langs"] as $langmap) { if (is_array($langmap)) { $numlang++; if ($numlang > 1) { $bb_page["onelang"] = false; break; } } } // Generate and write out the final page. $data = "<" . "?php\n"; $data .= "\tdefine(\"BB_FILE\", 1);\n"; $data .= "\trequire_once \"" . $bb_file . "_page.php\";\n"; if ($bb_relroot != "") { $data .= "\tchdir(\$bb_relroot);\n"; } $data .= "\trequire_once \"main.php\";\n"; $data .= "?" . ">"; if (BB_WriteFile($bb_dir . "/" . $bb_file . ".php", $data) === false) { return false; } $data = "<" . "?php\n"; $data .= "\t\$bb_dir = \"" . $bb_dir . "\";\n"; $data .= "\t\$bb_file = \"" . $bb_file . "\";\n"; $data .= "\t\$bb_relroot = \"" . $bb_relroot . "\";\n"; $data .= "\t\$bb_page = " . BB_CreatePHPStorageData($bb_page) . ";\n"; $data .= "?" . ">"; if (BB_WriteFile($bb_dir . "/" . $bb_file . "_page.php", $data) === false) { return false; } if (function_exists("BB_RunPluginAction")) { BB_RunPluginAction("post_bb_savepage"); } return true; }
public function ProcessBBAction() { global $bb_widget, $bb_widget_id, $bb_account, $bb_revision_num, $g_bb_content_shortcodes, $g_bb_content_security, $g_bb_content_security_path; if (!BB_IsMemberOfPageGroup("_p")) { exit; } if ($bb_account["type"] == "dev" && $_REQUEST["bb_action"] == "bb_content_configure_security_submit") { BB_RunPluginAction("pre_bb_content_configure_security_submit"); // Rebuild the security context array. $g_bb_content_security = array(); foreach ($g_bb_content_shortcodes as $sname => $info) { if (isset($info["security"])) { foreach ($info["security"] as $key => $desc) { $key2 = $sname . "|" . $key; if (isset($_REQUEST[$key2]) && $_REQUEST[$key2] != "" && ($_REQUEST[$key2] == "content" || $_REQUEST[$key2] == "design" || $_REQUEST[$key2] == "dev")) { if (!isset($g_bb_content_security[$sname])) { $g_bb_content_security[$sname] = array(); } $g_bb_content_security[$sname][$key] = $_REQUEST[$key2]; } } } } // Save security contexts. $data = "<" . "?php\n\t\$g_bb_content_security = " . BB_CreatePHPStorageData($g_bb_content_security) . ";\n?" . ">"; if (BB_WriteFile($g_bb_content_security_path, $data) === false) { BB_PropertyFormError("Unable to save the shortcode security options."); } ?> <div class="success"><?php echo htmlspecialchars(BB_Translate("Global shortcode security options updated.")); ?> </div> <script type="text/javascript"> window.parent.CloseProperties(); window.parent.ReloadIFrame(); </script> <?php BB_RunPluginAction("post_bb_content_configure_security_submit"); } else { if ($bb_account["type"] == "dev" && $_REQUEST["bb_action"] == "bb_content_configure_security") { BB_RunPluginAction("pre_bb_content_configure_security"); $options = array("title" => "Configure Global Shortcode Security", "desc" => "Configure the global shortcode display options based on login account type.", "fields" => array(), "submit" => "Save", "focus" => true); foreach ($g_bb_content_shortcodes as $sname => $info) { if (isset($info["security"])) { foreach ($info["security"] as $key => $desc) { if ($key == "") { $options["fields"][] = array("title" => $desc[0], "type" => "select", "name" => $sname . "|" . $key, "options" => array("dev" => "Developers only", "design" => "Developers and Web Designers", "content" => "Everyone"), "select" => isset($g_bb_content_security[$sname]) && isset($g_bb_content_security[$sname][$key]) ? $g_bb_content_security[$sname][$key] : "", "desc" => $desc[1]); } else { $options["fields"][] = array("title" => $desc[0], "type" => "select", "name" => $sname . "|" . $key, "options" => array("" => "None", "content" => "Content Editors only", "design" => "Web Designers and Content Editors", "dev" => "Everyone"), "select" => isset($g_bb_content_security[$sname]) && isset($g_bb_content_security[$sname][$key]) ? $g_bb_content_security[$sname][$key] : "", "desc" => $desc[1]); } } } } BB_RunPluginActionInfo("bb_content_configure_security_options", $options); BB_PropertyForm($options); BB_RunPluginAction("post_bb_content_configure_security"); } else { if ($_REQUEST["bb_action"] == "bb_content_edit_load") { BB_RunPluginAction("pre_bb_content_edit_load"); if (isset($bb_widget->body)) { echo rawurlencode(UTF8::ConvertToHTML($bb_widget->body)); } else { echo rawurlencode("<p></p>"); } BB_RunPluginAction("post_bb_content_edit_load"); } else { if ($_REQUEST["bb_action"] == "bb_content_edit_save") { BB_RunPluginAction("pre_bb_content_edit_save"); $options = array("shortcodes" => true, "shortcode_placeholder" => "bb_content_shortcode_placeholder", "shortcode_ids" => array()); $shortcodes = $bb_widget->shortcodes; $base = "wid_" . htmlspecialchars($bb_widget_id) . "_"; foreach ($shortcodes as $num => $shortcode) { $options["shortcode_ids"][$base . $num] = isset($shortcode["_sn"]) && isset($g_bb_content_shortcodes[$shortcode["_sn"]]) ? htmlspecialchars($g_bb_content_shortcodes[$shortcode["_sn"]]["mainicon"]) : ""; } $bb_widget->body = BB_HTMLPurifyForWYMEditor($_REQUEST["content"], $options); if (!$this->RegenerateContent(true)) { echo htmlspecialchars(BB_Translate("Unable to save content. Try again.")); } else { echo "OK\n"; echo "<script type=\"text/javascript\">ReloadIFrame();</script>"; } BB_RunPluginAction("post_bb_content_edit_save"); } else { if ($_REQUEST["bb_action"] == "bb_content_edit_add_shortcode" && BB_IsSecExtraOpt("sname")) { BB_RunPluginAction("pre_bb_content_edit_add_shortcode"); if (!isset($_REQUEST["sname"]) || !isset($g_bb_content_shortcodes[$_REQUEST["sname"]])) { ?> <script type="text/javascript"> alert('<?php echo htmlspecialchars(BB_JSSafe(BB_Translate("Shortcode handler not found."))); ?> '); </script> <?php } else { if (!$this->IsShortcodeAllowed($_REQUEST["sname"], "")) { ?> <script type="text/javascript"> alert('<?php echo htmlspecialchars(BB_JSSafe(BB_Translate("Shortcode access denied."))); ?> '); </script> <?php } else { $sname = $_REQUEST["sname"]; $sid = count($bb_widget->shortcodes); $bb_widget->shortcodes[] = array("_sn" => $sname, "_id" => $sid); if (!BB_SaveLangPage($bb_revision_num)) { ?> <script type="text/javascript"> alert('<?php echo htmlspecialchars(BB_JSSafe(BB_Translate("Unable to add a new %s.", $g_bb_content_shortcodes[$sname]["name"]))); ?> '); </script> <?php } else { ?> <script type="text/javascript"> InsertWYMEditorContent('contenteditor', 'wid_<?php echo BB_JSSafe($bb_widget_id); ?> ', '<img id="wid_<?php echo BB_JSSafe($bb_widget_id); ?> _<?php echo $sid; ?> " class="bb_content_shortcode_placeholder" src="<?php echo htmlspecialchars(BB_JSSafe($g_bb_content_shortcodes[$sname]["mainicon"])); ?> " />'); </script> <?php } } } BB_RunPluginAction("post_bb_content_edit_add_shortcode"); } else { if ($_REQUEST["bb_action"] == "bb_content_edit_edit_shortcode" && (!isset($_REQUEST["sc_action"]) || BB_IsSecExtraOpt("sid") && BB_IsSecExtraOpt("sc_action"))) { BB_RunPluginAction("pre_bb_content_edit_edit_shortcode"); if (!isset($_REQUEST["sid"])) { BB_PropertyFormLoadError("Shortcode ID not specified."); } $sid = $_REQUEST["sid"]; $pos = strrpos($sid, "_"); if ($pos !== false) { $sid = substr($sid, $pos + 1); } $sid = (int) $sid; if (!isset($bb_widget->shortcodes[$sid]) || !isset($bb_widget->shortcodes[$sid]["_sn"])) { BB_PropertyFormLoadError("Invalid shortcode ID."); } $sname = $bb_widget->shortcodes[$sid]["_sn"]; if (!isset($g_bb_content_shortcodes[$sname])) { BB_PropertyFormLoadError("Shortcode handler not found."); } if (!$this->IsShortcodeAllowed($sname, "")) { BB_PropertyFormLoadError("Shortcode access denied."); } if (!isset($_REQUEST["sc_action"])) { $_REQUEST["sc_action"] = $sname . "_configure"; } $shortcode = "bb_content_shortcode_" . $sname; $shortcode = new $shortcode(); $this->currsid = $sid; $shortcode->ProcessShortcodeBBAction($this); BB_RunPluginAction("post_bb_content_edit_edit_shortcode"); } else { if ($_REQUEST["bb_action"] == "bb_content_edit") { BB_RunPluginAction("pre_bb_content_edit"); ?> <script type="text/javascript"> html = '<style type="text/css">\n'; <?php foreach ($g_bb_content_shortcodes as $sname => $info) { $sname2 = preg_replace('/[^A-Za-z0-9_]/', "_", trim($sname)); ?> html += '.wym_skin_barebones .wym_buttons li.wym_tools_custom_<?php echo htmlspecialchars(BB_JSSafe($sname2)); ?> a { background-image: url(<?php echo htmlspecialchars(BB_JSSafe($info["toolbaricon"])); ?> ); background-repeat: no-repeat; }\n'; <?php } ?> html += '</style>\n'; $("head").append(html); window.bb_content_WYMEditorPostInit = function(eid, id, wym) { <?php foreach ($g_bb_content_shortcodes as $sname => $info) { if ($this->IsShortcodeAllowed($sname, "")) { $sname2 = preg_replace('/[^A-Za-z0-9_]/', "_", trim($sname)); ?> var html = '<li class="wym_tools_custom_<?php echo htmlspecialchars(BB_JSSafe($sname2)); ?> "><a name="<?php echo htmlspecialchars(BB_JSSafe($info["name"])); ?> " href="#"><?php echo htmlspecialchars(BB_JSSafe($info["name"])); ?> </a></li>'; $(wym._box).find(wym._options.toolsSelector + wym._options.toolsListSelector).append(html); $(wym._box).find('li.wym_tools_custom_<?php echo BB_JSSafe($sname2); ?> a').click(function() { $('#' + eid + '_loader').load(Gx__URLBase, <?php echo BB_CreateWidgetPropertiesJS("bb_content_edit_add_shortcode", array("sname" => $sname), true); ?> ); return false; }); <?php } } ?> $(wym._doc).bind('dblclick', function(e) { if (e.target.tagName == 'IMG' && $(e.target).hasClass('bb_content_shortcode_placeholder') && typeof(e.target.id) == 'string' && e.target.id != '') { window.parent.LoadProperties({ 'bb_action' : 'bb_content_edit_edit_shortcode', 'wid' : '<?php echo BB_JSSafe($bb_widget_id); ?> ', 'sid' : e.target.id, 'bbt' : '<?php echo BB_JSSafe(BB_CreateSecurityToken("bb_content_edit_edit_shortcode", $bb_widget_id)); ?> ' }); } }); } if (typeof(window.parent.CreateWYMEditorInstance) != 'function') { window.bb_content_ClosedAllContent = function(eid) { setTimeout(function() { DestroyWYMEditorInstance(eid); $('#' + eid).hide(); }, 250); } } window.parent.LoadConditionalScript(Gx__RootURL + '/' + Gx__SupportPath + '/editcontent.js?_=20090725', true, function(loaded) { return ((!loaded && typeof(window.CreateWYMEditorInstance) == 'function') || (loaded && !IsConditionalScriptLoading())); }, function(params) { $('#contenteditor').show(); var fileopts = { loadurl : Gx__URLBase, loadparams : <?php echo BB_CreateWidgetPropertiesJS("bb_content_edit_load", array(), true); ?> , id : 'wid_<?php echo BB_JSSafe($bb_widget_id); ?> ', display : '<?php echo BB_JSSafe($bb_widget->_f); ?> ', saveurl : Gx__URLBase, saveparams : <?php echo BB_CreateWidgetPropertiesJS("bb_content_edit_save", array(), true); ?> , wymtoolbar : 'bold,italic,superscript,subscript,pasteword,undo,redo,createlink,unlink,insertorderedlist,insertunorderedlist,indent,outdent', wymeditorpostinit : bb_content_WYMEditorPostInit }; var editopts = { ismulti : true, closelast : bb_content_ClosedAllContent, width : '100%', height : '300px' }; CreateWYMEditorInstance('contenteditor', fileopts, editopts); }); window.parent.CloseProperties2(false); </script> <?php BB_RunPluginAction("post_bb_content_edit"); } else { if (isset($_REQUEST["action"])) { // Pass other requests onto the shortcode action handler. if (isset($_REQUEST["sid"])) { $sid = (int) $_REQUEST["sid"]; if (isset($bb_widget->shortcodes[$sid]) && isset($bb_widget->shortcodes[$sid]["_sn"])) { $sname = $bb_widget->shortcodes[$sid]["_sn"]; if (isset($g_bb_content_shortcodes[$sname])) { $shortcode = "bb_content_shortcode_" . $sname; $shortcode = new $shortcode(); $this->currsid = $sid; $shortcode->ProcessShortcodeAction($this); } } } } } } } } } } } }
function BB_SaveExtensionsCache() { global $bb_extensions_info, $bb_paths; $data = "<" . "?php\n\t\$bb_extensions_info = " . BB_CreatePHPStorageData($bb_extensions_info) . ";\n?" . ">"; if (BB_WriteFile((isset($bb_paths) ? $bb_paths["ROOT_PATH"] : ROOT_PATH) . "/extensions_cache.php", $data) === false) { return false; } BB_RunPluginAction("post_bb_saveextensionscache"); return true; }