mirror of
https://github.com/Mibew/i18n.git
synced 2025-01-23 22:00:29 +03:00
123 lines
4.3 KiB
PHP
123 lines
4.3 KiB
PHP
<?php
|
|
/*
|
|
* This file is part of Mibew Messenger project.
|
|
*
|
|
* Copyright (c) 2005-2011 Mibew Messenger Community
|
|
* 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
|
|
*
|
|
* 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.
|
|
*
|
|
* Contributors:
|
|
* Evgeny Gryaznov - initial API and implementation
|
|
*/
|
|
|
|
require_once("inc_menu.php");
|
|
$page['title'] = getlocal("canned.title");
|
|
$page['menuid'] = "canned";
|
|
|
|
function tpl_content() { global $page, $webimroot, $errors;
|
|
?>
|
|
|
|
<?php echo getlocal("canned.descr") ?>
|
|
<br />
|
|
<br />
|
|
<?php
|
|
require_once('inc_errors.php');
|
|
?>
|
|
|
|
<form name="cannedForm" method="get" action="<?php echo $webimroot ?>/operator/canned.php">
|
|
|
|
<div class="mform"><div class="formtop"><div class="formtopi"></div></div><div class="forminner">
|
|
|
|
<div class="packedFormField">
|
|
<?php echo getlocal("canned.locale") ?><br/>
|
|
<select name="lang" onchange="this.form.submit();"><?php
|
|
foreach($page['locales'] as $k) {
|
|
echo "<option value=\"".$k["id"]."\"".($k["id"] == form_value("lang") ? " selected=\"selected\"" : "").">".$k["name"]."</option>";
|
|
} ?></select>
|
|
</div>
|
|
|
|
<?php if($page['showgroups']) { ?>
|
|
<div class="packedFormField">
|
|
<?php echo getlocal("canned.group") ?><br/>
|
|
<select name="group" onchange="this.form.submit();"><?php
|
|
foreach($page['groups'] as $k) {
|
|
echo "<option value=\"".$k["groupid"]."\"".($k["groupid"] == form_value("group") ? " selected=\"selected\"" : "").">".$k["vclocalname"]."</option>";
|
|
} ?></select>
|
|
</div>
|
|
<?php } ?>
|
|
|
|
<br clear="all"/>
|
|
|
|
</div><div class="formbottom"><div class="formbottomi"></div></div></div>
|
|
</form>
|
|
<br/>
|
|
|
|
<div class="tabletool">
|
|
<img src="<?php echo $webimroot ?>/images/buttons/createban.gif" border="0" alt=""/>
|
|
<a href="<?php echo $webimroot ?>/operator/cannededit.php?lang=<?php echo form_value("lang") ?>&group=<?php echo form_value("group")?>" target="_blank"
|
|
onclick="this.newWindow = window.open('<?php echo $webimroot ?>/operator/cannededit.php?lang=<?php echo form_value("lang") ?>&group=<?php echo form_value("group")?>', '', 'toolbar=0,scrollbars=1,location=0,status=1,menubar=0,width=640,height=480,resizable=1');this.newWindow.focus();this.newWindow.opener=window;return false;">
|
|
<?php echo getlocal("canned.add") ?>
|
|
</a>
|
|
</div>
|
|
<br clear="all"/>
|
|
|
|
<?php if( $page['pagination'] ) { ?>
|
|
|
|
<table class="translate">
|
|
<thead>
|
|
<tr class="header"><th>
|
|
<?php echo getlocal("cannededit.message") ?>
|
|
</th><th>
|
|
<?php echo getlocal("canned.actions") ?>
|
|
</th></tr>
|
|
</thead>
|
|
<tbody>
|
|
<?php
|
|
if( $page['pagination.items'] ) {
|
|
foreach( $page['pagination.items'] as $localstr ) { ?>
|
|
<tr>
|
|
<td>
|
|
<?php echo str_replace("\n", "<br/>",htmlspecialchars(topage($localstr['vcvalue']))) ?>
|
|
</td>
|
|
<td>
|
|
<a href="<?php echo $webimroot ?>/operator/cannededit.php?key=<?php echo $localstr['id'] ?>" target="_blank"
|
|
onclick="this.newWindow = window.open('<?php echo $webimroot ?>/operator/cannededit.php?key=<?php echo $localstr['id'] ?>', '', 'toolbar=0,scrollbars=1,location=0,status=1,menubar=0,width=640,height=480,resizable=1');this.newWindow.focus();this.newWindow.opener=window;return false;"><?php echo getlocal("canned.actions.edit") ?></a>,
|
|
<a href="<?php echo $webimroot ?>/operator/canned.php?act=delete&key=<?php echo $localstr['id'] ?>&lang=<?php echo form_value("lang") ?>&group=<?php echo form_value("group")?>"><?php echo getlocal("canned.actions.del") ?></a>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
} else {
|
|
?>
|
|
<tr>
|
|
<td colspan="3">
|
|
<?php echo getlocal("tag.pagination.no_items.elements") ?>
|
|
</td>
|
|
</tr>
|
|
<?php
|
|
}
|
|
?>
|
|
</tbody>
|
|
</table>
|
|
<?php
|
|
if( $page['pagination.items'] ) {
|
|
echo "<br/>";
|
|
echo generate_pagination($page['pagination']);
|
|
}
|
|
}
|
|
?>
|
|
|
|
<?php
|
|
} /* content */
|
|
|
|
require_once('inc_main.php');
|
|
?>
|