1
0
Fork 0
mirror of https://github.com/Oreolek/ifhub.club.git synced 2024-06-29 04:55:02 +03:00
ifhub.club/include/ajax/textPreview.php

44 lines
1.1 KiB
PHP

<?php
/*-------------------------------------------------------
*
* LiveStreet Engine Social Networking
* Copyright © 2008 Mzhelskiy Maxim
*
*--------------------------------------------------------
*
* Official site: www.livestreet.ru
* Contact e-mail: rus.engine@gmail.com
*
* GNU General Public License, version 2:
* http://www.gnu.org/licenses/old-licenses/gpl-2.0.html
*
---------------------------------------------------------
*/
/**
* Обрабатывает текс для предпросмотра контента
*/
set_include_path(get_include_path().PATH_SEPARATOR.dirname(dirname(dirname(__FILE__))));
$sDirRoot=dirname(dirname(dirname(__FILE__)));
require_once($sDirRoot."/config/config.ajax.php");
$sText=getRequest('text',null,'post');
$bSave=getRequest('save',null,'post');
$bStateError=true;
$sTextResult='';
if ($oEngine->User_IsAuthorization()) {
if ($bSave) {
$sTextResult=htmlspecialchars($sText);
} else {
$sTextResult=$oEngine->Text_Parser($sText);
}
$bStateError=false;
}
$GLOBALS['_RESULT'] = array(
"bStateError" => $bStateError,
"sText" => $sTextResult,
);
?>