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


PHP Widgets::render方法代码示例

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


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

示例1: foreach

						<div class="modal-body">
							<div class="progress progress-striped active">
								<div class="progress-bar" style="width: 100%"></div>
							</div>
						</div>
					</div>
				</div>
			</div>
		</div>
	</div>
	<?php 
if (count(Widgets::render('publish_new')) > 0) {
    ?>
		<div class="col-md-3 col-sm-12 col-xs-12">
		    <?php 
    foreach (Widgets::render('publish_new') as $widget) {
        ?>
		        <div class="panel panel-sidebar <?php 
        echo get_class($widget->widget);
        ?>
">
		            <?php 
        echo $widget;
        ?>
		        </div>
		    <?php 
    }
    ?>
		</div>
	<?php 
}
开发者ID:demoic,项目名称:openclassifieds2,代码行数:31,代码来源:new.php

示例2: defined

<?php

defined('SYSPATH') or die('No direct script access.');
?>

<div class="col-xs-3"> 
	<?php 
foreach (Widgets::render('sidebar') as $widget) {
    ?>
		<div class="panel panel-sidebar <?php 
    echo get_class($widget->widget);
    ?>
">
			<?php 
    echo $widget;
    ?>
		</div>
	<?php 
}
?>
</div>
开发者ID:ThomWensink,项目名称:openclassifieds2,代码行数:21,代码来源:sidebar.php

示例3: defined

<?php

defined('SYSPATH') or die('No direct script access.');
?>
<hr>
<footer>
    <div class="row">
        <?$i=0; foreach ( Widgets::render('footer') as $widget):?>
            <div class="col-md-3">
                <?php 
echo $widget;
?>
            </div>
            <? $i++; if ($i%4 == 0) echo '<div class="clearfix"></div>';?>
        <?endforeach?>
    </div>
    <!--This is the license for Open Classifieds, do not remove -->
    <div class="center-block">
        <p>&copy;
            <?if (Theme::get('premium')!=1):?>
                Web Powered by <a href="http://open-classifieds.com?utm_source=<?php 
echo URL::base();
?>
&utm_medium=oc_footer&utm_campaign=<?php 
echo date('Y-m-d');
?>
" title="Best PHP Script Classifieds Software">Open Classifieds</a> 
                2009 - <?php 
echo date('Y');
?>
            <?else:?>
开发者ID:nick-catanchin-ie,项目名称:openclassifieds2,代码行数:31,代码来源:footer.php

示例4: widget

 /**
  * Outputs the widget
  * 
  * @param  array $args
  * @param  array $instance
  * @return void
  */
 public function widget($args, $instance)
 {
     $template = get_current_template();
     // If not a page stop rendering
     if (!$template) {
         return false;
     }
     // Get template dir
     $dir = Sidebars::$sidebars[$template][$args['id']]['dir'];
     // If no fields exist stop rendering
     $fields = get_fields($instance['widget_id']);
     if (!$fields || !isset($fields['widget'])) {
         return false;
     }
     // Render the widgets
     foreach ($fields['widget'] as $widget) {
         echo Widgets::render($args, $widget, $dir);
     }
 }
开发者ID:troubletribbles,项目名称:dr_bootstrap,代码行数:26,代码来源:widgets.php

示例5: foreach

                <?php 
echo Theme::get('header_ad') != '' ? Theme::get('header_ad') : '';
?>
                <?php 
echo $content;
?>
            </section>

            <?php 
echo Theme::get('sidebar_position') == 'right' ? View::fragment('sidebar_front', 'sidebar') : '';
?>
            
            <div class="container">
                <?php 
foreach (Widgets::render('footer') as $widget) {
    ?>
                <div class="col-lg-3">
                    <?php 
    echo $widget;
    ?>
                </div>
                <?php 
}
?>
            </div>


            <?php 
echo $footer;
?>
开发者ID:Ryanker,项目名称:open-eshop,代码行数:30,代码来源:main.php


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