Source for file elements.inc.php
Documentation is available at elements.inc.php
* @author PHPShop Software
* @package PHPShopElements
if($this->PHPShopSystem->getValue('skin_choice')) {
while (($file = readdir($dh)) !== false) {
if($_SESSION['skin'] == $file)
if($file!= "." and $file!= ".." and $file!= "index.html")
@$name.= "<option value=\"$file\" $sel>Шаблон $file</option>";
$forma= "<div style=\"padding:10px\"><form name=SkinForm method=post><select name=\"skin\" onchange=\"ChangeSkin()\">". $name. "</select></form></div>";
$this->set('leftMenuContent',$forma);
$this->set('leftMenuName',"Сменить дизайн");
$PHPShopModules->setHookHandler(__CLASS__ ,__FUNCTION__ , $this, &$dis);
|