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


PHP CKEditor::replaceAll方法代码示例

本文整理汇总了PHP中CKEditor::replaceAll方法的典型用法代码示例。如果您正苦于以下问题:PHP CKEditor::replaceAll方法的具体用法?PHP CKEditor::replaceAll怎么用?PHP CKEditor::replaceAll使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在CKEditor的用法示例。


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

示例1: CKEditor

			<textarea cols="80" id="editor2" name="editor2" rows="10">&lt;p&gt;This is some &lt;strong&gt;sample text&lt;/strong&gt;. You are using &lt;a href="http://ckeditor.com/"&gt;CKEditor&lt;/a&gt;.&lt;/p&gt;</textarea>
		</p>
		<p>
			<input type="submit" value="Submit"/>
		</p>
	</form>
	<div id="footer">
		<hr />
		<p>
			CKEditor - The text editor for the Internet - <a class="samples" href="http://ckeditor.com/">http://ckeditor.com</a>
		</p>
		<p id="copy">
			Copyright &copy; 2003-2013, <a class="samples" href="http://cksource.com/">CKSource</a> - Frederico
			Knabben. All rights reserved.
		</p>
	</div>
	<?php 
// Include the CKEditor class.
include "../../ckeditor.php";
// Create a class instance.
$CKEditor = new CKEditor();
// Path to the CKEditor directory, ideally use an absolute path instead of a relative dir.
//   $CKEditor->basePath = '/ckeditor/'
// If not set, CKEditor will try to detect the correct path.
$CKEditor->basePath = '../../';
// Replace all textarea elements with CKEditor.
$CKEditor->replaceAll();
?>
</body>
</html>
开发者ID:mohamedaliauc,项目名称:callweb,代码行数:30,代码来源:replaceall.php

示例2: CKEditor

 function ckeditor_replace($class = 'ck_editor')
 {
     $ckeditor = new CKEditor(Config::get('ckeditor.basepath'));
     return $ckeditor->replaceAll($class);
 }
开发者ID:EdgeCommerce,项目名称:edgecommerce,代码行数:5,代码来源:core.php


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