当前位置: 首页>>代码示例>>PHP>>正文


PHP Section::get_by_parent_section方法代码示例

本文整理汇总了PHP中Section::get_by_parent_section方法的典型用法代码示例。如果您正苦于以下问题:PHP Section::get_by_parent_section方法的具体用法?PHP Section::get_by_parent_section怎么用?PHP Section::get_by_parent_section使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在Section的用法示例。


在下文中一共展示了Section::get_by_parent_section方法的4个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: elseif

    ?>
	
parent:
	type:section
separator:
	type:textbox 
	default: "|"
style:
	type:textarea
<?php 
} elseif ($mode == 'layout') {
    ?>
0
<?php 
} elseif ($mode == 'view') {
    $sections = new Section();
    $sections->order_by('sort', 'asc');
    $sections->get_by_parent_section($parent);
    function remove_denied($sec)
    {
        return $sec->can_view();
    }
    $secs = $sections->all;
    $secs = array_filter($secs, 'remove_denied');
    $hyperLinks = array();
    foreach ($secs as $item) {
        $local = site_url($item->id);
        array_push($hyperLinks, "<a href=\"{$local}\" style=\"{$style}\" >{$item->name}</a>\n");
    }
    echo implode($separator, $hyperLinks);
}
开发者ID:kabircse,项目名称:Codeigniter-Egypt,代码行数:31,代码来源:sections+line.php

示例2: Section

<?php 
} else {
    if ($mode == 'layout') {
        //replace 0 with number of cells your plugin has
        ?>
0


<?php 
    } else {
        if ($mode == 'view') {
            //the real content of your plugin goes here
            $sections = new Section();
            $sections->order_by('sort', 'asc');
            $sections->get_by_parent_section($info->parent);
            function remove_denied($sec)
            {
                return $sec->can_view();
            }
            $secs = $sections->all;
            $secs = array_filter($secs, 'remove_denied');
            $hyperLinks = array();
            foreach ($secs as $item) {
                $local = site_url($item->id);
                array_push($hyperLinks, "<a href=\"{$local}\" style=\"{$info->style}\" >{$item->name}</a>");
            }
            echo implode($info->separator, $hyperLinks);
        }
    }
}
开发者ID:sigit,项目名称:vunsy,代码行数:30,代码来源:sections+line.php

示例3: array

 function rec_section($id, $spacer = '--')
 {
     $op = array();
     $sec = new Section();
     $sec->order_by('sort', 'asc');
     $sec->get_by_parent_section($id);
     foreach ($sec->all as $item) {
         $op['s' . $item->id] = $spacer . $item->name;
         $op = array_merge($op, rec_section($item->id, $spacer . '&nbsp;'));
     }
     return $op;
 }
开发者ID:sigit,项目名称:vunsy,代码行数:12,代码来源:Gui.php

示例4: foreach

                $p_sec->get_by_parent_section($info->secondary);
                foreach ($p_sec->all as $item) {
                    ?>
	
	<li class="secondary">
		<a href="<?php 
                    echo site_url($item->id);
                    ?>
" ><?php 
                    echo $item->name;
                    ?>
</a>
		
		<?php 
                    $sub_section = new Section();
                    $sub_section->get_by_parent_section($item->id);
                    if (count($sub_section->all) > 0) {
                        ?>
		<ul>
			<?php 
                        foreach ($sub_section->all as $sub_item) {
                            ?>
			<li>
				<a href="<?php 
                            echo site_url($sub_item->id);
                            ?>
"><?php 
                            echo $item->name;
                            ?>
</a>
			</li>
开发者ID:sigit,项目名称:vunsy,代码行数:31,代码来源:navigation+bar.php


注:本文中的Section::get_by_parent_section方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。