Размер файла: 1.88Kb
<?php
/**
* Ant0ha's project
*
* @package
* @author Anton Pisarenko <[email protected]>
* @copyright Copyright (c) 2006 - 2010, Anton Pisarenko
* @license http://ant0ha.ru/license.txt
* @link http://ant0ha.ru
*/
defined('IN_SYSTEM') or die('<b>403<br />Запрет доступа!</b>');
//---------------------------------------------
/**
* Виджет html вставок
*/
class html_widget {
/**
* Показ виджета
*/
public static function display($widget_id) {
$db =& $GLOBALS['db'];
$widget = $db->get_row("SELECT * FROM #__index_page_widgets WHERE widget_id = $widget_id");
$config = parse_ini_string($widget['config']);
if(empty($config['code'])) return 'Виджет «'. $widget['title'] .'» не настроен, либо настроен не верно!<br />';
return $config['code'] .'<br />';
}
/**
* Настройка виджета
*/
public static function setup($widget) {
$db =& $GLOBALS['db'];
$tpl =& $GLOBALS['controller']->tpl;
if(isset($_POST['submit'])) {
if(!$error) {
$config = 'code = "'. str_replace('"', '"', mysql_real_escape_string($_POST['code'])) .'"';
$db->query("UPDATE #__index_page_widgets SET
config = '$config'
WHERE widget_id = '". $widget['widget_id'] ."'
");
a_notice('Изменения сохранены', a_url('index_page/admin'));
}
}
if(!isset($_POST['submit']) OR $error) {
$config = parse_ini_string($widget['config']);
$form_data = '
<p>
<label>HTML/текстовая вставка:</label>
<textarea name="code">'. htmlspecialchars($config['code']) .'</textarea>
</p>';
$tpl->assign(array(
'form_data' => $form_data,
'error' => $error
));
$tpl->display('widget_setup');
}
}
}
?>