当前位置: 首页>>代码示例>>PHP>>正文


PHP Export::LSTableHead方法代码示例

本文整理汇总了PHP中Export::LSTableHead方法的典型用法代码示例。如果您正苦于以下问题:PHP Export::LSTableHead方法的具体用法?PHP Export::LSTableHead怎么用?PHP Export::LSTableHead使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Export的用法示例。


在下文中一共展示了Export::LSTableHead方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: switch

             break;
         default:
             $func->information(t('Der von dir angegebene Dateityp wird nicht unterstützt. Bitte wähle eine Datei vom Typ *.xml, oder *.csv aus oder überspringe den Dateiimport.'), "index.php?mod=install&action=import");
             break;
     }
     $dsp->AddBackButton("index.php?mod=install&action=export", "install/export");
     $dsp->AddContent();
     break;
 case 3:
     $db->connect();
     switch ($_GET["type"]) {
         case "xml":
             $export->ExportAllTables($_POST["e_struct"], $_POST["e_cont"]);
             break;
         case "xml_modules":
             $export->LSTableHead();
             foreach ($_POST["table"] as $key => $value) {
                 if ($key) {
                     $export->ExportMod($key, $_POST["e_struct"], $_POST["e_cont"], $_POST["e_trans"]);
                 }
             }
             $export->LSTableFoot();
             break;
         case "xml_tables":
             $export->LSTableHead();
             foreach ($_POST["table"] as $key => $value) {
                 if ($key) {
                     $export->ExportTable($key, $_POST["e_struct"], $_POST["e_cont"]);
                 }
             }
             $export->LSTableFoot();
开发者ID:eistr2n,项目名称:lansuite,代码行数:31,代码来源:export.php

示例2: array

 case 41:
     $func->question(t('Bist du sicher, dass du die Datenbank des Moduls "%1" zurücksetzen möchtest? Dies löscht unwiderruflich alle Daten, die in diesem Modul bereits geschrieben wurden!', array($_GET['module'])), 'index.php?mod=install&action=mod_cfg&step=42&module=' . $_GET['module'] . '&tab=2', 'index.php?mod=install&action=mod_cfg&module=' . $_GET['module'] . '&tab=2');
     break;
     // Rewrite specific Module-DB
 // Rewrite specific Module-DB
 case 42:
     $install->WriteTableFromXMLFile($_GET['module'], 1);
     $func->confirmation(t('Tabelle wurde erfolgreich neu geschrieben'), 'index.php?mod=install&action=mod_cfg&module=' . $_GET['module'] . '&tab=2');
     break;
     // Export Module-DB
 // Export Module-DB
 case 43:
     include_once 'modules/install/class_export.php';
     $export = new Export();
     if ($_GET['module']) {
         $export->LSTableHead('lansuite_' . $_GET['module'] . '_' . date('ymd') . '.xml');
         $export->ExportMod($_GET['module'], $_POST['e_struct'], $_POST['e_cont']);
         $export->LSTableFoot();
     }
     break;
 default:
     #			$dsp->NewContent(t('Datenbank - Modul') .": ". $_GET["module"], t('Hier kannst du die Datenbankeinträge zu diesem Modul verwalten'));
     $mod_tables = '';
     $mod_tables_arr = array();
     if (is_dir('modules/' . $_GET['module'] . '/mod_settings')) {
         $file = 'modules/' . $_GET['module'] . '/mod_settings/db.xml';
         if (file_exists($file)) {
             $xml_file = fopen($file, 'r');
             $xml_content = fread($xml_file, filesize($file));
             fclose($xml_file);
             $lansuite = $xml->get_tag_content('lansuite', $xml_content);
开发者ID:eistr2n,项目名称:lansuite,代码行数:31,代码来源:mod_cfg.php


注:本文中的Export::LSTableHead方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。