backup: live-stand vor erstem git-deployment
This commit is contained in:
45
module/languageswitch/edit_language_switch_listform.inc.php
Normal file
45
module/languageswitch/edit_language_switch_listform.inc.php
Normal file
@@ -0,0 +1,45 @@
|
||||
<?php
|
||||
$translation = \DynCom\mysyde\common\classes\Registry::get("translation");
|
||||
$formname = "form_langauge_switch_list";
|
||||
$inputname = "input_id";
|
||||
?>
|
||||
|
||||
<ul class="toolbar_menu">
|
||||
<?= button("new", $translation->get("new"), $formname, "loadCard('new_langauge_switch', true)"); ?>
|
||||
<?= button("edit", $translation->get("edit"), $formname, "loadCard('edit_langauge_switch')"); ?>
|
||||
<?= button("delete", $translation->get("delete"), $formname, "sendRequest('delete_langauge_switch', false, '{$translation->get('delete_langauge_switch_confirm')}')"); ?>
|
||||
</ul>
|
||||
|
||||
<div id="mainContent">
|
||||
|
||||
<?php echo current_website_language($site, $language); ?>
|
||||
<h1><?php echo get_translation('left_text'); ?></h1>
|
||||
|
||||
<form id="<?= $formname ?>" name="<?= $formname ?>" method="post">
|
||||
<input type="hidden" class="selected_linklist_row" name="input_id" value="" />
|
||||
|
||||
<div class="requestLoader"></div>
|
||||
<?
|
||||
$query = "SELECT
|
||||
main_shop_langauge_switch.id,
|
||||
from_unixtime(modified_date, '%d.%m.%Y %H:%i:%s') AS '" . $translation->get("changed_on") . "',
|
||||
main_admin_user.name AS '" . $translation->get("changed_by") . "'
|
||||
FROM
|
||||
main_shop_langauge_switch
|
||||
INNER JOIN
|
||||
main_admin_user
|
||||
ON
|
||||
main_shop_langauge_switch.modified_user = main_admin_user.id
|
||||
WHERE
|
||||
main_language_id = " . (int)$GLOBALS["language"]['id'] . "
|
||||
AND
|
||||
collection_header = 0
|
||||
ORDER BY id ASC";
|
||||
//echo $query;
|
||||
$format = array('option', 'text', 'text', 'text', 'text');
|
||||
if ($result = @mysqli_query($GLOBALS['mysql_con'], $query)) {
|
||||
linklist($result, $formname, $format, "input_id", "edit_langauge_switch");
|
||||
}
|
||||
?>
|
||||
</form>
|
||||
</div>
|
||||
Reference in New Issue
Block a user