コード例 #1
0
ファイル: apSectionAdd.php プロジェクト: PapaKot/Horowitz
 static function seclist($e, &$ff, &$exclude)
 {
     //список разделов для селекта
     $xml = new xml($e);
     $shift = str_repeat('- ', $xml->evaluate('count(ancestor-or-self::sec)', $e));
     $res = $xml->query('sec', $e);
     foreach ($res as $sec) {
         if (!in_array($sec->getAttribute('id'), $exclude)) {
             $ff->addOption($sec->getAttribute('id'), $shift . $sec->getAttribute('title'));
             apSectionAdd::seclist($sec, $ff, $exclude);
         }
     }
 }