87 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
			
		
		
	
	
			87 lines
		
	
	
		
			2.4 KiB
		
	
	
	
		
			PHP
		
	
	
		
			Executable File
		
	
	
<?php
 | 
						|
/*
 | 
						|
 ----------------------------------------------------------------------
 | 
						|
 LICENSE
 | 
						|
 | 
						|
 This program is free software; you can redistribute it and/or
 | 
						|
 modify it under the terms of the GNU General Public License (GPL)
 | 
						|
 as published by the Free Software Foundation; either version 2
 | 
						|
 of the License, or (at your option) any later version.
 | 
						|
 | 
						|
 This program is distributed in the hope that it will be useful,
 | 
						|
 but WITHOUT ANY WARRANTY; without even the implied warranty of
 | 
						|
 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 | 
						|
 GNU General Public License for more details.
 | 
						|
 | 
						|
 To read the license please visit http://www.gnu.org/copyleft/gpl.html
 | 
						|
 ----------------------------------------------------------------------
 | 
						|
*/
 | 
						|
 | 
						|
/**
 | 
						|
 * List the folders having password-protection in the account's home
 | 
						|
 * 
 | 
						|
 * @copyright AlternC-Team 2000-2017 https://alternc.com/ 
 | 
						|
 */
 | 
						|
 | 
						|
require_once("../class/config.php");
 | 
						|
include_once("head.php");
 | 
						|
 | 
						|
if ($r=$hta->ListDir()) {
 | 
						|
  reset($r);
 | 
						|
}
 | 
						|
 | 
						|
?>
 | 
						|
<h3><?php __("Protected folders list"); ?></h3>
 | 
						|
<hr id="topbar"/>
 | 
						|
<br />
 | 
						|
<?php
 | 
						|
echo $msg->msg_html_all();
 | 
						|
 | 
						|
if (!is_array($r)) {
 | 
						|
  echo "<p><span class=\"ina\"><a href=\"hta_add.php\">"._("Protect a folder")."</a></span><br />";
 | 
						|
  $mem->show_help("hta_list");
 | 
						|
  echo "</p>";
 | 
						|
  include_once("foot.php");
 | 
						|
  exit();
 | 
						|
}
 | 
						|
 | 
						|
?>
 | 
						|
 | 
						|
<p>
 | 
						|
<?php 
 | 
						|
__("You can set passwords to protect some of your folders.<br/>This will create .htaccess and .htpasswd files that restrict access to these directory and to any sub-elements.");
 | 
						|
// __("help_hta_list");
 | 
						|
$mem->show_help("hta_list2");
 | 
						|
?>
 | 
						|
</p>
 | 
						|
 | 
						|
<form method="post" action="hta_del.php">
 | 
						|
  <?php csrf_get(); ?>
 | 
						|
<table class="tlist">
 | 
						|
  <tr><th colspan="2"> </th><th><?php __("Folder"); ?></th></tr>
 | 
						|
<?php
 | 
						|
 | 
						|
 | 
						|
for($i=0;$i<count($r);$i++){
 | 
						|
?>
 | 
						|
	<tr  class="lst">
 | 
						|
		<td align="center"><input type="checkbox" class="inc" name="del_<?php ehe($r[$i]); ?>" value="<?php ehe($r[$i]); ?>" /></td>
 | 
						|
		<td>
 | 
						|
<div class="ina lock"><a href="hta_edit.php?dir=<?php eue($r[$i]); ?>"><?php __("Edit login and passwords"); ?></a></div>
 | 
						|
</td>
 | 
						|
    <td><?php echo '<a href="bro_main.php?R='.ehe($r[$i],false).'">'.ehe($r[$i],false).'</a>'; ?></td>
 | 
						|
	</tr>
 | 
						|
    <?php
 | 
						|
	}
 | 
						|
?>
 | 
						|
</table>
 | 
						|
<br />
 | 
						|
<input type="submit" class="ina unlock" name="submit" value="<?php __("Unprotect the checked folders"); ?>" />
 | 
						|
			<span class="ina add"><a href="hta_add.php"><?php __("Protect a folder"); ?></a></span>
 | 
						|
</form>
 | 
						|
 | 
						|
<p>
 | 
						|
<?php $mem->show_help("hta_list"); ?>
 | 
						|
</p>
 | 
						|
<?php include_once("foot.php"); ?>
 |