#!/usr/bin/php -q "]; $style[] = "div.case-list{float:left;padding:10px;margin:0 45px 64px 0;height:128px;width:128px;text-align:center;cursor:pointer}"; $style[] = "div.case-list span{position:relative;top:64px;width:auto;max-width:128px;height:128px;font-size:128px}"; $style[] = "div.case-list span.fa{top:24px;max-width:80px;font-size:80px}"; $style[] = "div.case-list:hover{color:#f0000c}"; $style[] = "div.case-name{position:relative;top:74px;font-family:clear-sans!important}"; $style[] = "div.custom-name{position:relative;top:10px;font-family:clear-sans!important}"; $style[] = ""; $script = [""; $html = ["
"]; $cases = file("$docroot/webGui/styles/default-cases.css",FILE_IGNORE_NEW_LINES|FILE_SKIP_EMPTY_LINES); foreach ($cases as $case) if (substr($case,0,6)=='.case-') $models[] = substr($case,1,strpos($case,':')-1); natsort($models); for ($i=0; $i < count($models); $i++) { $model = $models[$i]; $name = substr($model,5); $title = str_replace('3u-avs-10-4','3u-avs-10/4',$name); $select = $name==$cmodel ? 'color:#e68a00' : ''; $html[] = "
$title
"; } $select = $cmodel=='case-model.png' ? 'color:#e68a00' : ''; $html[] = "
"._('custom image')."
"; $html[] = "
"; $html[] = ""; $html[] = ""; echo implode($style),implode($script),implode($html); ?>