class_editor_std.php
来自「sabreipb 2.1.6 utf-8中文版本!」· PHP 代码 · 共 89 行
PHP
89 行
<?php/*+--------------------------------------------------------------------------| Invision Power Board v2.1.5| =============================================| by Matthew Mecham| (c) 2001 - 2005 Invision Power Services, Inc.| | =============================================| Web: | Time: Wed, 01 Mar 2006 19:11:28 GMT| Release: | Licence Info: +---------------------------------------------------------------------------| > $Date: 2005-10-24 22:17:00 +0100 (Mon, 24 Oct 2005) $| > $Revision: 64 $| > $Author: bfarber $+---------------------------------------------------------------------------|| > Posting STD Editor| > Module written by Matt Mecham| > Date started: Thursday 10th March 2005 11:38|+--------------------------------------------------------------------------*//*** Text Editor: Standard Class** Class for parsing standard text editor** @package InvisionPowerBoard* @subpackage TextEditor* @author Matt Mecham* @version 2.1* @since 2.1.0* @ignore*//****//*** Text Editor: Standard Class** Class for parsing standard text editor** @package InvisionPowerBoard* @subpackage TextEditor* @author Matt Mecham* @version 2.1* @since 2.1.0* @ignore*/class class_editor_module extends class_editor{ # Global var $ipsclass; /*-------------------------------------------------------------------------*/ // Process the raw post with BBCode before showing in the form /*-------------------------------------------------------------------------*/ function process_before_form( $t ) { $t = str_replace( '<', '<', $t ); $t = str_replace( '>', '>', $t ); return $t; } /*-------------------------------------------------------------------------*/ // Process the raw post with BBCode before saving /*-------------------------------------------------------------------------*/ function process_after_form( $form_field ) { return $this->_clean_post( $_POST[ $form_field ] ); } }?>
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?