⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 ext_example-menu.php

📁 Hippo CMS是一个以信息为中心的开源内容管理系统。Hippo CMS目标是供中,大型企业来管理其发布在互连网
💻 PHP
字号:
<?PHP  $LocalPluginPath = dirname(dirname(__FILE__)).'\plugins';  $LocalSkinPath = dirname(dirname(__File__)).'\skins';?><html><head>  <!--------------------------------------:noTabs=true:tabSize=2:indentSize=2:--    --  Xinha example menu.  This file is used by full_example.html within a    --  frame to provide a menu for generating example editors using    --  full_example-body.html, and full_example.js.    --    --  $HeadURL$    --  $LastChangedDate$    --  $LastChangedRevision$    --  $LastChangedBy$    --------------------------------------------------------------------------->  <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />  <title>Example of Xinha</title>  <link rel="stylesheet" href="full_example.css" />  <style type="text/css">    h1 {font: bold 22px "Staccato222 BT", cursive;}    form, p {margin: 0px; padding: 0px;}    label { display:block;}  </style>  <script language="JavaScript" type="text/javascript">  var settings = null;  settings = {    width: "auto",    height: "auto",    sizeIncludesBars: true,    statusBar: true,    mozParaHandler: "best",    undoSteps: 20,    baseHref: null,    stripBaseHref: true,    stripSelfNamedAnchors: true,    only7BitPrintablesInURLs: true,    sevenBitClean: false,    killWordOnPaste: true,    flowToolbars: true,    CharacterMapMode: "popup",    ListTypeMode: "toolbar",    showLoading: false,    showChar: true,    showWord: true,    showHtml: true  };    function getCookieVal (offset) {      var endstr = document.cookie.indexOf (";", offset);      if (endstr == -1)        endstr = document.cookie.length;      return unescape(document.cookie.substring(offset, endstr));    }    function getCookie (name) {      var arg = name + "=";      var alen = arg.length;      var clen = document.cookie.length;      var i = 0;      while (i < clen) {        var j = i + alen;        if (document.cookie.substring(i, j) == arg)          return getCookieVal (j);        i = document.cookie.indexOf(" ", i) + 1;        if (i == 0) break;      }      return null;    }    function setCookie (name, value) {      var argv = setCookie.arguments;      var argc = setCookie.arguments.length;      var expires = (argc > 2) ? argv[2] : null;      var path = (argc > 3) ? argv[3] : null;      var domain = (argc > 4) ? argv[4] : null;      var secure = (argc > 5) ? argv[5] : false;      document.cookie = name + "=" + escape (value) +        ((expires == null) ? "" : ("; expires=" + expires.toGMTString())) +        ((path == null) ? "" : ("; path=" + path)) +        ((domain == null) ? "" : ("; domain=" + domain)) +        ((secure == true) ? "; secure" : "");    }  function _onResize() {    var sHeight;    if (window.innerHeight) sHeight = window.innerHeight;    else if (document.body && document.body.offsetHeight) sHeight = document.body.offsetHeight;    else return;    if (sHeight>270) {      sHeight = sHeight - 245;    } else {      sHeight = 30    }    var div = document.getElementById("div_plugins");    div.style.height = sHeight + "px";  }function Dialog(url, action, init) {	if (typeof init == "undefined") {		init = window;	// pass this window object by default	}	Dialog._geckoOpenModal(url, action, init);};Dialog._parentEvent = function(ev) {	setTimeout( function() { if (Dialog._modal && !Dialog._modal.closed) { Dialog._modal.focus() } }, 50);	if (Dialog._modal && !Dialog._modal.closed) {		agt = navigator.userAgent.toLowerCase();		is_ie = ((agt.indexOf("msie") != -1) && (agt.indexOf("opera") == -1));		if (is_ie) {		 	ev.cancelBubble = true;			ev.returnValue = false;		} else {			ev.preventDefault();			ev.stopPropagation();		}	}};// should be a function, the return handler of the currently opened dialog.Dialog._return = null;// constant, the currently opened dialogDialog._modal = null;// the dialog will read it's args from this variableDialog._arguments = null;Dialog._geckoOpenModal = function(url, action, init) {	var dlg = window.open(url, "hadialog",			      "toolbar=no,menubar=no,personalbar=no,width=10,height=10," +			      "scrollbars=no,resizable=yes,modal=yes,dependable=yes");	Dialog._modal = dlg;	Dialog._arguments = init;	// capture some window's events	function capwin(w) {//		HTMLArea._addEvent(w, "click", Dialog._parentEvent);//		HTMLArea._addEvent(w, "mousedown", Dialog._parentEvent);//		HTMLArea._addEvent(w, "focus", Dialog._parentEvent);	};	// release the captured events	function relwin(w) {//		HTMLArea._removeEvent(w, "click", Dialog._parentEvent);//		HTMLArea._removeEvent(w, "mousedown", Dialog._parentEvent);//		HTMLArea._removeEvent(w, "focus", Dialog._parentEvent);	};	capwin(window);	// capture other frames	for (var i = 0; i < window.frames.length; capwin(window.frames[i++]));	// make up a function to be called when the Dialog ends.	Dialog._return = function (val) {		if (val && action) {			action(val);		}		relwin(window);		// capture other frames		for (var i = 0; i < window.frames.length; relwin(window.frames[i++]));		Dialog._modal = null;	};};  function fExtended () {    Dialog("Extended.html", function(param) {      if(param) {        settings.width = param["width"];        settings.height = param["height"];        settings.sizeIncludesBars = (param["sizeIncludesBars"]=="true");        settings.statusBar = (param["statusBar"]=="true");        settings.mozParaHandler = param["mozParaHandler"];        settings.undoSteps = param["undoSteps"];        settings.baseHref = param["baseHref"];        settings.stripBaseHref = (param["stripBaseHref"]=="true");        settings.stripSelfNamedAnchors = (param["stripSelfNamedAnchors"]=="true");        settings.only7BitPrintablesInURLs = (param["only7BitPrintablesInURLs"]=="true");        settings.sevenBitClean = (param["sevenBitClean"]=="true");        settings.killWordOnPaste = (param["killWordOnPaste"]=="true");        settings.flowToolbars = (param["flowToolbars"]=="true");        settings.CharacterMapMode = param["CharacterMapMode"];        settings.ListTypeMode = param["ListTypeMode"];        settings.showLoading = (param["showLoading"]=="true");        settings.showChar = (param["showChar"]=="true");        settings.showWord = (param["showWord"]=="true");        settings.showHtml = (param["showHtml"]=="true");      }    }, settings );  }  function init(){    var co = getCookie('co_ext_Xinha');    if(co!=null){      var co_values;      var co_entries = co.split('###');      for (var i in co_entries) {        co_values = co_entries[i].split('=');        if(co_values[0]=='plugins') {          for(var x = 0; x < document.forms[0].plugins.length; x++) {            if(co_values[1].indexOf(document.forms[0].plugins[x].value)!=-1) {              document.forms[0].plugins[x].checked = true;            }          }        } else if(co_values[0]!='') {          document.getElementById(co_values[0]).value = co_values[1];        }      }    }    _onResize();  };  window.onresize = _onResize;  window.onload = init;  </script></head><body>  <form action="ext_example-body.html" target="body" name="fsettings" id="fsettings">  <h1>Xinha Example</h1>    <fieldset>      <legend>Settings</legend>        <label>          Number of Editors: <input type="text" name="num" id="num" value="1" style="width:25;" maxlength="2"/>        </label>        <label>          Language:          <select name="lang" id="lang">          <option value="en">English</option>          <option value="de">German</option>          <option value="fr">French</option>          <option value="it">Italian</option>          <option value="no">Norwegian</option>          <option value="pl">Polish</option>          </select>        </label>        <label>          Skin:          <select name="skin" id="skin">          <option value="">-- no skin --</option><?php	$d = @dir($LocalSkinPath);	while (false !== ($entry = $d->read()))  //not a dot file or directory	{	if(substr($entry,0,1) != '.')		{ echo '<option value="' . $entry . '"> ' . $entry . '</option>'."\n";		}	}	$d->close();?>          </select>        </label>        <center><input type="button" value="extended Settings" onClick="fExtended();" /></center>    </fieldset>    <fieldset>      <legend>Plugins</legend>      <div id="div_plugins" style="width:100%; overflow:auto"><?php	$d = @dir($LocalPluginPath);	while (false !== ($entry = $d->read()))  //not a dot file or directory	{	if(substr($entry,0,1) != '.')		{ echo '<label><input type="checkbox" name="plugins" id="plugins" value="' . $entry . '"> ' . $entry . '</label>'."\n";		}	}	$d->close();?>      </div>    </fieldset>    <center><button type="submit">reload editor</button></center>        <textarea id="myTextarea0" style="display:none">          <p>Lorem ipsum dolor sit amet, consectetuer adipiscing elit.          Aliquam et tellus vitae justo varius placerat. Suspendisse iaculis          velit semper dolor. Donec gravida tincidunt mi. Curabitur tristique          ante elementum turpis. Aliquam nisl. Nulla posuere neque non          tellus. Morbi vel nibh. Cum sociis natoque penatibus et magnis dis          parturient montes, nascetur ridiculus mus. Nam nec wisi. In wisi.          Curabitur pharetra bibendum lectus.</p>          <ul>            <li> Phasellus et massa sed diam viverra semper.  </li>            <li> Mauris tincidunt felis in odio.              </li>            <li> Nulla placerat nunc ut pede.                 </li>            <li> Vivamus ultrices mi sit amet urna.           </li>            <li> Quisque sed augue quis nunc laoreet volutpat.</li>            <li> Nunc sit amet metus in tortor semper mattis. </li>          </ul>        </textarea>  </form>  <script type="text/javascript">    top.frames["body"].location.href = document.location.href.replace(/ext_example-menu\.php.*/, 'ext_example-body.html')    var _oldSubmitHandler = null;    if (document.forms[0].onsubmit != null) {      _oldSubmitHandler = document.forms[0].onsubmit;    }    function frame_onSubmit(){      var thenewdate = new Date ();      thenewdate.setTime(thenewdate.getTime() + (5*24*60*60*1000));      var co_value = 'skin=' + document.getElementById('skin').options[document.getElementById('skin').selectedIndex].value + '###' +                     'lang=' + document.getElementById('lang').options[document.getElementById('lang').selectedIndex].value + '###' +                     'num=' + document.getElementById('num').value + '###';      var s_value='';      for(var x = 0; x < document.forms[0].plugins.length; x++) {        if(document.forms[0].plugins[x].checked)          s_value += document.forms[0].plugins[x].value + '/';      }      if(s_value!='') {        co_value += 'plugins=' + s_value + '###'      }      setCookie('co_ext_Xinha', co_value, thenewdate);      if (_oldSubmitHandler != null) {        _oldSubmitHandler();      }    }    document.forms[0].onsubmit = frame_onSubmit;  </script></body></html>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -