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


PHP content_for函数代码示例

本文整理汇总了PHP中content_for函数的典型用法代码示例。如果您正苦于以下问题:PHP content_for函数的具体用法?PHP content_for怎么用?PHP content_for使用的例子?那么恭喜您, 这里精选的函数代码示例或许可以为您提供帮助。


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

示例1: html_default_view

function html_default_view($vars)
{
    extract($vars);
    ?>
<p>my content</p>
<?php 
    content_for('side');
    ?>
<p><?php 
    echo 'my';
    ?>
 sidebar</p>
<?php 
    end_content_for();
}
开发者ID:Energeyser,项目名称:projet_framework,代码行数:15,代码来源:02-outputs.php

示例2: content_for

content_for('controls');
?>
<div id="controls">
    <ul>
        <li><a href="<?php 
echo url_for('clients', 'new');
?>
" id="createClient"><img src="img/create_client.png" alt="<?php 
echo _("New client");
?>
" title="<?php 
echo _("New client");
?>
"></a></li>
    </ul>
</div>
<?php 
end_content_for();
?>

<?php 
content_for('scripts');
?>
 

<?php 
echo HTML::script("\n\$('.edit_client, #createClient').live('click', function() {\n    \$.getScript(this.href);\n    return false;\n});\nvar currentNav = 'clients';\n");
?>

<?php 
end_content_for();
开发者ID:Raven24,项目名称:DbAcl,代码行数:31,代码来源:index.html.php

示例3: end_content_for

/**
 * Stops capturing block of text
 *
 * @return void
 */
function end_content_for()
{
    content_for();
}
开发者ID:plus3network,项目名称:PHPHelpers,代码行数:9,代码来源:limonade.php

示例4: content_for

<!--fichier template pour l'affichage du panneau principal de l'ajout des promos-->
<?php 
content_for('main');
?>
<div class="promos">
    <h1>Données</h1></br>
    <!-- formulaire demendant d'entrer le nom de la promo à créer qui renvoie vers le traintement dans le fichier promo_ajouter.php-->
    <form class="ajout_promo" action="../controllers/promos/promo_ajouter.php" method="post" enctype="multipart/form-data">
        <h2 class="ajout-donnees-heading">Ajouter une promo</h2>
        <label for="inputPromo" class="sr-only">Promo</label>
        <input type="text" id="promo" name="promo" class="form-control" required autofocus><br/>
        <button class="btn btn-lg btn-primary btn-ajouter" type="submit">Ajouter</button>
    </form>

    <a href="../admin.php/promos"><button type="button" class="btn btn-lg btn-retour">Retour</button></a>
</div>
<?php 
end_content_for();
开发者ID:Energeyser,项目名称:projet_framework,代码行数:18,代码来源:promo_ajouter.tpl.php

示例5: InitTextAreas

    ?>
          
        </ul>
      </div>
    <?php 
}
?>
  </div>
  
  <script type="text/javascript">
    Cookie.setup()
    InitTextAreas();
    InitAdvancedEditing();
    Post.InitBrowserLinks();
    if(TagCompletion)
      TagCompletion.init(0);
  </script>

  <!--[if lt IE 7]>
    <script type="text/javascript">
      if(Cookie.get("hide-ie-nag") != "1")
        $("old-browser").show();
    </script>
  <![endif]-->
  
  <?php 
content_for('post_cookie_javascripts');
?>
  
	</body>
</html>
开发者ID:laiello,项目名称:my-imouto-booru,代码行数:31,代码来源:default.php

示例6: end_content_for

					<button id="editFile" class="btn btn-primary" data-dismiss="modal" aria-hidden="true" onclick="modifFile(this)">Sauvegarder</button>
					<button class="btn btn-danger" data-dismiss="modal" aria-hidden="true">Annuler</button>

				</div>
			</div>

		</div>
	</div>

<?php 
end_content_for();
?>


<?php 
content_for('script');
?>
	<script>

		$(document).ready(function(){
			refreshDatas();
		});

		/*------------------------------------------------------------------ Data -----------------------------------------------------------------------*/

		function refreshDatas(){
			$.ajax({
				url: "<?php 
echo url_for('/datas/get/all');
?>
",
开发者ID:Nephylhim,项目名称:framework-admin_rentree,代码行数:31,代码来源:admin_datas.html.php

示例7: die

# TODO: change die for a nicer way to exit.
if (!empty(ActionView::$params['render_type'])) {
    if (ActionView::$params['render_type'] == 'inline') {
        echo ActionView::$params['render_value'];
    }
} else {
    if (false === (include ActionView::$render)) {
        if (System::$conf->system_error_reporting) {
            die('Unable to find View file.');
        } else {
            exit_with_status(500);
        }
    }
}
ActionView::$content_for['layout'] = ob_get_clean();
if (Request::$format == 'html' && !empty(ActionView::$layout)) {
    if (!(include LAYOUTS . ActionView::$layout . '.php')) {
        if (System::$conf->system_error_reporting) {
            die('Unable to load Layout.');
        } else {
            exit_with_status(500);
        }
    }
} else {
    if (Request::$format == 'html') {
        content_for('layout');
    } elseif (Request::$format == 'xml') {
        content_for('layout');
    }
}
exit;
开发者ID:laiello,项目名称:my-imouto-booru,代码行数:31,代码来源:render_markup_default.php

示例8: elseif

        ?>
  <?php 
        /* If this is an author archive */
    } elseif (is_author()) {
        ?>
	<h2 class="pagetitle">Author Archive</h2>
	  <?php 
        content_for('breadcrumbs', array(link_to('Author Archive', '#', array(), false)));
        ?>
	  <?php 
        /* If this is a paged archive */
    } elseif (isset($_GET['paged']) && !empty($_GET['paged'])) {
        ?>
	<h2 class="pagetitle">Blog Archives</h2>
	  <?php 
        content_for('breadcrumbs', array(link_to('Blog Archives', '#', array(), false)));
        ?>
	  <?php 
    }
    ?>


	<div class="navigation">
		<span class="left"><?php 
    next_posts_link('Older Entries');
    ?>
</span>
		<span class="right"><?php 
    previous_posts_link('Newer Entries');
    ?>
</span>
开发者ID:adamhunter,项目名称:Black-Apple,代码行数:31,代码来源:archive.php

示例9: content_for

<?php

content_for('body');
?>

<div class="header">
    <div class="row">
        <div class="col-md-4">
            <img src="ressources/images/logo_ISEN.png" />
        </div>
        <div class="col-md-4">
            <h1 class="center blisen">Panneau d'administration</h1>
        </div>
    </div>
</div>

<div class="body">
    <div class="row">
        <div class="col-md-4 col-md-offset-1">

            <a href="?/" class="button-m">Accueil</a>
            <a href="?/admin_files" class="button-m">Fichiers / Promos</a>
            <a href="?/admin_datas" class="button-m">Données élèves</a>

        </div>
    </div>
</div>



<?php 
开发者ID:Nephylhim,项目名称:framework-admin_rentree,代码行数:31,代码来源:home.html.php

示例10: link_to

  <li><?php 
echo link_to('Aliases', 'tag_alias#index');
?>
</li>
  <li><?php 
echo link_to('Implications', 'tag_implication#index');
?>
</li>
  <?php 
if (User::is('>=40')) {
    ?>
    <li><?php 
    echo link_to('Mass edit', 'tag#mass_edit');
    ?>
</li>
  <?php 
}
?>
  <li><?php 
echo link_to('Edit', 'tag#edit');
?>
</li>
  <?php 
echo content_for('footer');
?>
  <li><?php 
echo link_to('Help', 'help#tags');
?>
</li>
<?php 
end_content_for();
开发者ID:laiello,项目名称:my-imouto-booru,代码行数:31,代码来源:_footer.php

示例11: do_content_for

<?php

do_content_for('subnavbar');
?>
  <li><a href="/pool">List</a></li>
  <li><a href="/pool/create">New</a></li>
  <?php 
content_for('footer');
?>
  <li><a href="/help/pools">Help</a></li>
  <?php 
content_for('footer_final');
end_content_for();
开发者ID:laiello,项目名称:my-imouto-booru,代码行数:13,代码来源:_footer.php

示例12: end_content_for

  <p><em>This content is available in the layout with the 
    <code>$sidebar</code> variable</em></p>

  <ul>
    <li>Exeros quisque modiam aliquipsum facincilit min. </li>
    <li>Eliquatum amconsendre quatet aciliqu consecte lore. </li>
    <li>Dolum feugue faccum. </li>
    <li>Eui lan landignibh, feugiamet nullam modit volorerci, eros nosto sequam veliquisit.</li>
  </ul>

  <p><small>Enibh ullan utpationse turpis velisim ullut alismolum. </small></p>
<?php 
end_content_for();
?>

<?php 
content_for('sidebar');
?>
  <p><em>This content is available in the layout with the 
    <code>$sidebar</code> variable</em></p>

  <ul>
    <li>Exeros quisque modiam aliquipsum facincilit min. </li>
    <li>Eliquatum amconsendre quatet aciliqu consecte lore. </li>
    <li>Dolum feugue faccum. </li>
    <li>Eui lan landignibh, feugiamet nullam modit volorerci, eros nosto sequam veliquisit.</li>
  </ul>

  <p><small>Enibh ullan utpationse turpis velisim ullut alismolum. </small></p>
<?php 
end_content_for();
开发者ID:alternatex,项目名称:store,代码行数:31,代码来源:index.html.php

示例13: end_content_for

//echo auto_discovery_link_tag_with_id :rss, {:controller => "post", :action => "piclens", :tags => params[:tags], :page => params[:page]}, {:id => 'pl'}
?>
  <?php 
//echo navigation_links(@posts)
end_content_for();
?>

<?php 
render_partial('footer');
?>

<?php 
if (check_content_for('subnavbar')) {
    ?>
  <!-- Align the links to the content, not the window. -->
  <div style="clear: both;">
    <div class="sidebar">&nbsp;</div>
    <div class="footer" style="clear: none;">
      <ul class="flat-list" id="subnavbar">
        <?php 
    content_for('subnavbar');
    ?>
      </ul>
    </div>
  </div>
  <?php 
    empty_content_for('subnavbar');
}
?>

开发者ID:laiello,项目名称:my-imouto-booru,代码行数:29,代码来源:index.php

示例14: ob_start

<?php

ob_start();
the_category('</li><li>');
$cats = ob_get_clean();
content_for('title', the_title(null, ' - ', false) . get_bloginfo('name'));
content_for('breadcrumbs', array($cats, link_to(the_title(null, null, false), get_permalink($post->ID), array(), false)));
?>


<?php 
if (have_posts()) {
    while (have_posts()) {
        the_post();
        ?>

  <div class="navigation">
    <span class="right"><?php 
        previous_post_link('%link');
        ?>
</span>
    <span class="left"><?php 
        next_post_link('%link');
        ?>
</span>
  </div>

	<div <?php 
        post_class();
        ?>
 id="post-<?php 
开发者ID:adamhunter,项目名称:Black-Apple,代码行数:31,代码来源:single.php

示例15: render_partial

<?php

!isset($include_tag_hover_highlight) && ($include_tag_hover_highlight = false);
!isset($include_tag_reverse_aliases) && ($include_tag_reverse_aliases = false);
?>
  <div>
<?php 
render_partial('post/show_partials/quick_edit');
?>
    <ul id="tag-sidebar">
      <?php 
!empty($tags['exclude']) && (print tag_links($tags['exclude'], array('prefix' => "-", 'with_hover_highlight' => true, 'with_hover_highlight' => $include_tag_hover_highlight)));
?>
      <?php 
!empty($tags['include']) && (print tag_links($tags['include'], array('with_aliases' => $include_tag_reverse_aliases, 'with_hover_highlight' => $include_tag_hover_highlight)));
?>
      <?php 
!empty($tags['related']) && (print tag_links(Tag::find_related($tags['related']), array('with_hover_highlight' => true, 'with_hover_highlight' => $include_tag_hover_highlight)));
?>
    </ul>
<?php 
content_for("quick_edit_form");
?>
  </div>
开发者ID:laiello,项目名称:my-imouto-booru,代码行数:24,代码来源:_tags.php


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