PHP Classes

File: htdocs/export.php

Recommend this page to a friend!
  Classes of ask sa sa   PHP LDAP admin   htdocs/export.php   Download  
File: htdocs/export.php
Role: Example script
Content type: text/plain
Description: Example script
Class: PHP LDAP admin
Perform operations to administer a LDAP server
Author: By
Last change:
Date: 1 year ago
Size: 1,111 bytes
 

Contents

Class file image Download
<?php
/**
 * Performs the export of data from the LDAP server
 *
 * @package phpLDAPadmin
 * @subpackage Page
 */

/**
 */

require './common.php';
require
LIBDIR.'export_functions.php';

# Prevent script from bailing early for long search
@set_time_limit(0);

$request = array();
$request['file'] = get_request('save_as_file') ? true : false;
$request['exporter'] = new Exporter($app['server']->getIndex(),get_request('exporter_id','REQUEST'));
$request['export'] = $request['exporter']->getTemplate();
$types = $request['export']->getType();

# send the header
if ($request['file']) {
   
$obStatus = ob_get_status();
    if (isset(
$obStatus['type']) && $obStatus['type'] && $obStatus['status'])
       
ob_end_clean();

   
header('Content-type: application/download');
   
header(sprintf('Content-Disposition: inline; filename="%s.%s"','export',$types['extension'].($request['export']->isCompressed() ? '.gz' : '')));
    echo
$request['export']->export();
    die();

} else {
    print
'<span style="font-size: 14px; font-family: courier;"><pre>';
    echo
htmlspecialchars($request['export']->export());
    print
'</pre></span>';
}
?>