git-svn-id: http://dev.prestashop.com/svn/v1/branches/1.5.x@8666 b9a71923-0436-4b27-9f14-aed3839534dd
18 lines
528 B
PHP
Executable File
18 lines
528 B
PHP
Executable File
<?php
|
|
require_once(dirname(__FILE__) . DIRECTORY_SEPARATOR . "inc" . DIRECTORY_SEPARATOR . "config.php");
|
|
define('_PS_ADMIN_DIR_', getcwd());
|
|
require_once('../../config/config.inc.php');
|
|
require_once('../init.php');
|
|
?>
|
|
<select class="input inputSearch" name="search_folder" id="search_folder">
|
|
<?php
|
|
|
|
foreach(getFolderListing(CONFIG_SYS_ROOT_PATH) as $k=>$v)
|
|
{
|
|
?>
|
|
<option value="<?php echo $v; ?>" ><?php echo shortenFileName($k, 30); ?></option>
|
|
<?php
|
|
}
|
|
|
|
?>
|
|
</select>
|