mirror of
https://github.com/e107inc/e107.git
synced 2025-01-18 05:09:05 +01:00
2e951dd633
overall administration area improvements; iconpicker shortcode, iconpicker e_form method; new Ajax#toggleUpdate, Ajax#scUpdate methods; old icons removal
143 lines
3.3 KiB
PHP
143 lines
3.3 KiB
PHP
<?php
|
|
/*
|
|
+ ----------------------------------------------------------------------------+
|
|
| e107 website system
|
|
|
|
|
| ©Steve Dunstan 2001-2002
|
|
| http://e107.org
|
|
| jalist@e107.org
|
|
|
|
|
| Released under the terms and conditions of the
|
|
| GNU General Public License (http://gnu.org).
|
|
|
|
|
| $Source: /cvs_backup/e107_0.8/e107_handlers/preset_class.php,v $
|
|
| $Revision: 1.4 $
|
|
| $Date: 2009-01-16 17:57:56 $
|
|
| $Author: secretr $
|
|
+----------------------------------------------------------------------------+
|
|
*/
|
|
|
|
if(!defined('e107_INIT'))
|
|
{
|
|
exit();
|
|
}
|
|
|
|
/**
|
|
* Form presets handler
|
|
*
|
|
* NEW in 0.8 - it wont output messages anymore,
|
|
* all pages should use eMessage:render() to catch up the
|
|
* preset message.
|
|
*
|
|
* TODO - multiple user defined presets per unique_id
|
|
*
|
|
*/
|
|
class e_preset
|
|
{
|
|
|
|
var $form;
|
|
|
|
var $page;
|
|
|
|
var $id;
|
|
|
|
/**
|
|
* Save preset
|
|
*
|
|
* @param string $exclude_fields Comma separated list of fields not to save
|
|
* @param bool $output output message or use message handler. NOTE - default value will be changed to false, update your code.
|
|
*/
|
|
function save_preset($exclude_fields = '', $output = true)
|
|
{
|
|
global $sql, $ns, $tp;
|
|
$qry = explode(".", e_QUERY);
|
|
$unique_id = is_array($this->id) ? $this->id : array($this->id);
|
|
$uid = $qry[1];
|
|
|
|
if($_POST && $qry[0] == "savepreset")
|
|
{
|
|
$exclude_array = explode(',', $exclude_fields);
|
|
|
|
foreach($_POST as $key => $value)
|
|
{ //TODO - array values disabled for now, handle them in the future
|
|
if(!in_array($key, $exclude_array) && !is_array($value))
|
|
{
|
|
$value = $tp->toDB($value);
|
|
if($sql->db_Update("preset", "preset_value='$value' WHERE preset_name ='".$unique_id[$uid]."' AND preset_field ='$key' "))
|
|
{
|
|
|
|
}
|
|
elseif($value != "" && !$sql->db_Select("preset", "*", "preset_name ='".$unique_id[$uid]."' AND preset_field ='$key' "))
|
|
{
|
|
$sql->db_Insert("preset", "0, '".$unique_id[$uid]."', '$key', '$value' ");
|
|
}
|
|
|
|
if($value == "")
|
|
{
|
|
$sql->db_Delete("preset", "preset_field ='".$key."' ");
|
|
}
|
|
}
|
|
}
|
|
if(!$output)
|
|
{
|
|
$ns->tablerender(LAN_SAVED, LAN_PRESET_SAVED);
|
|
return;
|
|
}
|
|
|
|
require_once (e_HANDLER."message_handler.php");
|
|
$emessage = &eMessage::getInstance();
|
|
$emessage->add(LAN_PRESET_SAVED, E_MESSAGE_SUCCESS);
|
|
}
|
|
|
|
if($_POST['delete_preset'] && e_QUERY == "clr_preset")
|
|
{
|
|
$del = $_POST['del_id'];
|
|
$check = $sql->db_Delete("preset", "preset_name ='".$unique_id[$del]."' ");
|
|
|
|
if($output)
|
|
{
|
|
$ns->tablerender(LAN_SAVED, $check ? LAN_PRESET_DELETED : LAN_DELETED_FAILED);
|
|
return;
|
|
}
|
|
|
|
require_once (e_HANDLER."message_handler.php");
|
|
$emessage = &eMessage::getInstance();
|
|
if($check)
|
|
$emessage->add(LAN_PRESET_DELETED, E_MESSAGE_SUCCESS);
|
|
else
|
|
$emessage->add(LAN_DELETED_FAILED, E_MESSAGE_ERROR);
|
|
}
|
|
|
|
}
|
|
|
|
/**
|
|
* Read preset
|
|
*
|
|
* @param string $unique_id
|
|
* @return array values
|
|
*/
|
|
function read_preset($unique_id)
|
|
{
|
|
global $sql, $tp;
|
|
|
|
$val = array();
|
|
if(!$_POST)
|
|
{
|
|
if($sql->db_Select("preset", "*", "preset_name ='$unique_id' "))
|
|
{
|
|
while($row = $sql->db_Fetch())
|
|
{
|
|
$val[$row['preset_field']] = $tp->toForm($row['preset_value']);
|
|
$_POST[$row['preset_field']] = $tp->toForm($row['preset_value']);
|
|
}
|
|
}
|
|
}
|
|
return $val;
|
|
}
|
|
|
|
// ---------------------------------------------------
|
|
|
|
|
|
}
|
|
|
|
?>
|