コード例 #1
0
ファイル: newpolicy.tpl.php プロジェクト: p4prawin/livechat
	<?php 
include erLhcoreClassDesign::designtpl('lhkernel/csfr_token.tpl.php');
?>
	
	     <h4><?php 
echo erTranslationClassLhTranslation::getInstance()->getTranslation('permission/newpolicy', 'Choose a module');
?>
</h4>	
	    
	     <select class="form-control" id="ModuleSelectedID" name="Module">
	         <option value="*">---<?php 
echo erTranslationClassLhTranslation::getInstance()->getTranslation('permission/newpolicy', 'All modules');
?>
---</option>
		     <?php 
foreach (erLhcoreClassModules::getModuleList() as $key => $Module) {
    ?>
		         <option value="<?php 
    echo $key;
    ?>
"><?php 
    echo htmlspecialchars($Module['name']);
    ?>
</option>
		     <?php 
}
?>
	     </select>
		
	     <h4><?php 
echo erTranslationClassLhTranslation::getInstance()->getTranslation('permission/newpolicy', 'Choose a module function');