Show
Ignore:
Timestamp:
08/24/06 20:51:31 (2 years ago)
Author:
mbonetti
Message:

experimental: XML dump of the installation.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • trunk/gregarius/admin/opml.php

    r1528 r1546  
    9191    // export 
    9292    opml_export_form(); 
    93  
     93    dump_export_form(); 
    9494    echo "</div>\n"; 
    9595} 
     
    113113} 
    114114 
     115 
     116/***** DUMP ******/ 
     117 
     118function dump_export_form() { 
     119 
     120    echo "<fieldset style=\"vertical-align:top\">\n<legend>".__('XML Dump:')."</legend>\n"; 
     121    echo "<form method=\"post\" action=\"".$_SERVER['PHP_SELF']."\">\n" 
     122    ."<p><label for=\"action\">". __('Dump your Gregarius installation to XML'). "</label>\n" 
     123    ."<input type=\"submit\" name=\"dumpact\" id=\"action\" value=\"".__('Dump!')."\" />" 
     124    ."<input type=\"hidden\" name=\"". CST_ADMIN_DOMAIN ."\" value=\"".CST_ADMIN_DOMAIN_CHANNEL."\"/>\n" 
     125    ."<input type=\"hidden\" name=\"".CST_ADMIN_METAACTION."\" value=\"dump\"/>\n" 
     126    ."</p>\n</form>\n" 
     127    ."</fieldset>\n"; 
     128} 
     129 
    115130?>