Home > php教程 > PHP源码 > body text

ThinkPHP3.0 + DWZ1.4.3 + RBAC 整合框架

PHP中文网
Release: 2016-05-25 17:10:40
Original
1178 people have browsed it

ThinkPHP3.0 + DWZ1.4.3 + RBAC 整合框架 首页 遍历menu写法

<div class="accordion"  fillSpace="sidebar"> 
  <volist name="menu" id="vo">
         
        <neq name="vo[&#39;submenu&#39;][0]" value="" >
            <div class="accordionHeader">
                <h2><span>Folder</span>{$vo[&#39;title&#39;]}</h2>
            </div>
            <div class="accordionContent">
                <ul class="tree treeFolder">
                    <volist name="vo[&#39;submenu&#39;]" id="sub">
                        <neq name="sub[&#39;name&#39;]|strtolower" value="public" >
                            <neq name="sub[&#39;name&#39;]|strtolower" value="index" >
                                <eq name="sub[&#39;access&#39;]" value="1">
                                <li><a href="__APP__/{$sub[&#39;name&#39;]}/index/" target="navTab" rel="{$sub[&#39;name&#39;]}">{$sub[&#39;title&#39;]}</a></li>
                                </eq>
                            </neq>
                        </neq>
                    </volist>
                </ul>
                 
            </div>
        </neq>
  </volist>
</div>
Copy after login
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template