2008-12-24 04:32:42 +03:00
|
|
|
<?php
|
|
|
|
/*
|
2009-06-04 02:44:32 +04:00
|
|
|
* This file is part of Mibew Messenger project.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2011-02-16 03:22:22 +03:00
|
|
|
* Copyright (c) 2005-2011 Mibew Messenger Community
|
2009-08-04 19:03:27 +04:00
|
|
|
* All rights reserved. The contents of this file are subject to the terms of
|
|
|
|
* the Eclipse Public License v1.0 which accompanies this distribution, and
|
|
|
|
* is available at http://www.eclipse.org/legal/epl-v10.html
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2009-08-04 17:38:37 +04:00
|
|
|
* Alternatively, the contents of this file may be used under the terms of
|
|
|
|
* the GNU General Public License Version 2 or later (the "GPL"), in which case
|
|
|
|
* the provisions of the GPL are applicable instead of those above. If you wish
|
|
|
|
* to allow use of your version of this file only under the terms of the GPL, and
|
|
|
|
* not to allow others to use your version of this file under the terms of the
|
|
|
|
* EPL, indicate your decision by deleting the provisions above and replace them
|
|
|
|
* with the notice and other provisions required by the GPL.
|
2009-08-04 20:30:39 +04:00
|
|
|
*
|
2008-12-24 04:32:42 +03:00
|
|
|
* Contributors:
|
|
|
|
* Evgeny Gryaznov - initial API and implementation
|
|
|
|
*/
|
|
|
|
|
2011-02-26 17:04:12 +03:00
|
|
|
function update_settings()
|
|
|
|
{
|
2011-02-26 16:13:16 +03:00
|
|
|
global $settings, $settings_in_db, $mysqlprefix;
|
2008-12-24 04:32:42 +03:00
|
|
|
$link = connect();
|
|
|
|
foreach ($settings as $key => $value) {
|
2011-02-26 17:04:12 +03:00
|
|
|
if (!isset($settings_in_db[$key])) {
|
|
|
|
perform_query("insert into ${mysqlprefix}chatconfig (vckey) values ('$key')", $link);
|
2008-12-24 04:32:42 +03:00
|
|
|
}
|
2011-11-09 22:59:07 +04:00
|
|
|
$query = sprintf("update ${mysqlprefix}chatconfig set vcvalue='%s' where vckey='$key'", db_escape_string($value));
|
2011-02-26 17:04:12 +03:00
|
|
|
perform_query($query, $link);
|
2008-12-24 04:32:42 +03:00
|
|
|
}
|
|
|
|
|
2011-11-09 18:16:37 +04:00
|
|
|
close_connection($link);
|
2008-12-24 04:32:42 +03:00
|
|
|
}
|
|
|
|
|
2011-02-26 17:04:12 +03:00
|
|
|
function setup_settings_tabs($active)
|
|
|
|
{
|
2008-12-24 04:32:42 +03:00
|
|
|
global $page, $webimroot;
|
|
|
|
$page['tabs'] = array(
|
|
|
|
getlocal("page_settings.tab.main") => $active != 0 ? "$webimroot/operator/settings.php" : "",
|
|
|
|
getlocal("page_settings.tab.features") => $active != 1 ? "$webimroot/operator/features.php" : "",
|
2009-07-24 13:05:39 +04:00
|
|
|
getlocal("page_settings.tab.performance") => $active != 2 ? "$webimroot/operator/performance.php" : "",
|
|
|
|
getlocal("page_settings.tab.themes") => $active != 3 ? "$webimroot/operator/themes.php" : "",
|
2008-12-24 04:32:42 +03:00
|
|
|
);
|
|
|
|
}
|
|
|
|
|
2011-11-09 18:16:37 +04:00
|
|
|
?>
|