当前位置: 首页>>代码示例>>PHP>>正文


PHP FCKeditor_IsCompatibleBrowser函数代码示例

本文整理汇总了PHP中FCKeditor_IsCompatibleBrowser函数的典型用法代码示例。如果您正苦于以下问题:PHP FCKeditor_IsCompatibleBrowser函数的具体用法?PHP FCKeditor_IsCompatibleBrowser怎么用?PHP FCKeditor_IsCompatibleBrowser使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


在下文中一共展示了FCKeditor_IsCompatibleBrowser函数的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: CreateHtml

 function CreateHtml()
 {
     global $smarty;
     $this->HtmlMeat = htmlspecialchars($this->Meat);
     if (FCKeditor_IsCompatibleBrowser()) {
         if (isset($_GET['fcksource']) && $_GET['fcksource'] == "true") {
             $this->File = 'fckeditor.original.html';
         }
         $this->ConfigString = $this->GetConfigFieldString();
         $this->id = preg_replace('/[^a-zA-Z0-9]/', '', $this->InstanceName);
         $this->LinkFile = $this->BasePath . 'editor/' . $this->File . '?InstanceName=' . $this->id . '&Toolbar=' . $this->ToolbarSet . '&' . $this->ConfigString;
         $this->Compat = true;
     }
     $smarty->assign('fck', $this);
     return $smarty->fetch('fck-edit.tpl');
 }
开发者ID:Kraiany,项目名称:kraiany_site_docker,代码行数:16,代码来源:tikifck.php

示例2: IsCompatible

 /**
  * Returns true if browser is compatible with FCKeditor.
  *
  * @return boolean
  */
 function IsCompatible()
 {
     return FCKeditor_IsCompatibleBrowser();
 }
开发者ID:Maxlander,项目名称:shixi,代码行数:9,代码来源:fckeditor_php4.php

示例3: htmlarea_availible

 /**
  * Checks if HTMLarea (or an other richtext editor) is availible for the used browser
  *
  * @return boolean
  */
 static function htmlarea_availible()
 {
     require_once PHPGW_INCLUDE_ROOT . '/felamimail/js/fckeditor/fckeditor.php';
     // use FCKeditor's own check
     return FCKeditor_IsCompatibleBrowser();
     return false;
 }
开发者ID:HaakonME,项目名称:porticoestate,代码行数:12,代码来源:class.html.inc.php


注:本文中的FCKeditor_IsCompatibleBrowser函数示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。