Lines Matching refs:dataList
62 function tpl_list_folder($dataList, $findAndProcessStartpage) { argument
75 for($i=0; $i<count($dataList); $i++) {
78 if ($dataList[$i]["type"] == "d") {
79 $perm = auth_quickaclcheck($dataList[$i]["id"].":*");
81 $perm = auth_quickaclcheck($dataList[$i]["id"]);
87 if (noNS($dataList[$i]["id"]) != $conf['start']) {
91 $pageFileName = split(":", $dataList[$i]["id"]);
96 $firstHeading = p_get_first_heading($dataList[$i]["id"]);
97 … if ($conf['useheading'] && $dataList[$i]["type"] == "f" && !empty($firstHeading)) {
106 if ($currentLevel > $dataList[$i]["level"]) {
107 echo str_repeat("</ul></li>\n", $currentLevel - $dataList[$i]["level"]);
108 $currentLevel = $dataList[$i]["level"];
112 if ($dataList[$i]["type"] == "d") {
114 if ($dataList[$i]["open"]) {
122 … $path = wl($dataList[$i]["id"].":".$conf['start'], "do=admin&page=acl");
124 $path = wl($dataList[$i]["id"].":".$conf['start']);
131 …tpl_pageLinkCreate ($dataList[$i]["id"], '<i class="icon-file"></i>' . $linkName, "direkt:tpl_list…
134 if ($dataList[$i+1]["level"] == $currentLevel) {
137 } else if ($dataList[$i+1]["level"] > $currentLevel) {
142 tpl_processStartPage($dataList[$i]["id"],"");
143 } else if ($dataList[$i+1]["level"] < $currentLevel) {
145 if (!empty($dataList[$i+1]["level"])) {
146 … echo str_repeat("</ul></li>\n", $currentLevel - $dataList[$i+1]["level"]);
149 $currentLevel = $dataList[$i+1]["level"];