mirror of
https://github.com/Mibew/mibew.git
synced 2025-03-13 14:44:08 +03:00
62 lines
2.0 KiB
PHP
62 lines
2.0 KiB
PHP
<?php
|
|
/*
|
|
* Copyright 2005-2013 the original author or authors.
|
|
*
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
*
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
*
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
*/
|
|
|
|
require_once('../libs/common.php');
|
|
require_once('../libs/operator.php');
|
|
require_once('../libs/groups.php');
|
|
require_once('../libs/getcode.php');
|
|
|
|
$operator = check_login();
|
|
loadsettings();
|
|
|
|
$stylelist = get_style_list("../styles");
|
|
$style = verifyparam("style", "/^\w*$/", "");
|
|
if ($style && !in_array($style, $stylelist)) {
|
|
$style = "";
|
|
}
|
|
|
|
$groupid = verifyparam_groupid("group");
|
|
$showhost = verifyparam("hostname", "/^on$/", "") == "on";
|
|
$forcesecure = verifyparam("secure", "/^on$/", "") == "on";
|
|
$modsecurity = verifyparam("modsecurity", "/^on$/", "") == "on";
|
|
|
|
$allLocales = get_available_locales();
|
|
|
|
$lang = verifyparam("lang", "/^[\w-]{2,5}$/", "");
|
|
if (!$lang || !in_array($lang, $allLocales))
|
|
$lang = in_array($current_locale, $allLocales) ? $current_locale : $allLocales[0];
|
|
|
|
$message = "Click to chat"; // TODO
|
|
|
|
$page = array();
|
|
$page['buttonCode'] = generate_button("", $lang, $style, $groupid, $message, $showhost, $forcesecure, $modsecurity);
|
|
$page['availableLocales'] = $allLocales;
|
|
$page['availableStyles'] = $stylelist;
|
|
$page['groups'] = get_groups_list();
|
|
|
|
$page['formgroup'] = $groupid;
|
|
$page['formstyle'] = $style;
|
|
$page['formlang'] = $lang;
|
|
$page['formhostname'] = $showhost;
|
|
$page['formsecure'] = $forcesecure;
|
|
$page['formmodsecurity'] = $modsecurity;
|
|
|
|
prepare_menu($operator);
|
|
setup_getcode_tabs(1);
|
|
start_html_output();
|
|
require('../view/getcode_text.php');
|
|
?>
|