hpdl
|
1856
|
1
|
<?php
|
|
2
|
/*
|
|
3
|
$Id: export.php 1863 2009-03-06 23:53:49Z hpdl $
|
|
4
|
|
|
5
|
osCommerce, Open Source E-Commerce Solutions
|
|
6
|
http://www.oscommerce.com
|
|
7
|
|
|
8
|
Copyright (c) 2009 osCommerce
|
|
9
|
|
|
10
|
This program is free software; you can redistribute it and/or modify
|
|
11
|
it under the terms of the GNU General Public License v2 (1991)
|
|
12
|
as published by the Free Software Foundation.
|
|
13
|
*/
|
|
14
|
|
|
15
|
class osC_Application_Languages_Actions_export extends osC_Application_Languages {
|
|
16
|
public function __construct() {
|
|
17
|
parent::__construct();
|
|
18
|
|
|
19
|
$this->_page_contents = 'export.php';
|
|
20
|
|
|
21
|
if ( isset($_POST['subaction']) && ($_POST['subaction'] == 'confirm') ) {
|
|
22
|
osC_Languages_Admin::export($_GET['lID'], $_POST['groups'], (isset($_POST['include_data']) && ($_POST['include_data'] == 'on')));
|
|
23
|
}
|
|
24
|
}
|
|
25
|
}
|
|
26
|
?>
|