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


PHP View::content方法代码示例

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


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

示例1: sendConfirmation

 public function sendConfirmation($userAttr)
 {
     $mail = Mail::getInstance();
     $mail->setTo($userAttr['email']);
     $mail->setFrom();
     $mail->setSubject('Your account is created succussful');
     $view = new View(HOME . DS . 'views' . DS . 'confirm.tpl');
     $view->set('user', $userAttr);
     $view->set('url', APP_URL . '/activate.php?token=' . $userAttr['confirmation_code']);
     $mail->setTemplate($view->content());
     return $mail->send();
 }
开发者ID:henryngoo,项目名称:magictest,代码行数:12,代码来源:Mail.php

示例2: render2

 public static function render2($cntrllr, $view, $data = [])
 {
     // Module::$module;
     self::$content = "";
     if (!isset($_GET['view'])) {
         self::$content = "app/views/" . $view . "-view.php";
     } else {
         if (View::isValid()) {
             self::$content = "app/views/" . $view . "/widget-default.php";
         } else {
             View::Error("<b>404 NOT FOUND</b> View <b>" . $view . "</b> folder  !!");
         }
     }
     if ($cntrllr->default_layout != "") {
         include "app/layouts/layout.php";
     }
 }
开发者ID:CloudGt,项目名称:suggbox-php,代码行数:17,代码来源:View.php

示例3: date

	<head>
		<title><?php 
echo APPNAME;
?>
</title>
		<link href="/assets/font-awesome/css/font-awesome.css" rel="stylesheet" />
		<link href="/assets/bootstrap/css/bootstrap.min.css" rel="stylesheet" />
		<link href="/assets/css/style.css" rel="stylesheet" />
		<?php 
View::stylesheets();
?>
	</head>
	<body>
		<div class="container" id="main-content">
			<?php 
View::content();
?>
		</div>
		
		<footer class="text-center" id="footer">
			<hr />
			<small class="text-muted">Copyright &copy; <?php 
echo date('Y');
?>
. All Rights Reserved.</small>
		</footer>
		
		<script type="text/javascript" src="/assets/js/jquery-1.10.1.min.js"></script>
		<script type="text/javascript" src="/assets/bootstrap/js/bootstrap.min.js"></script>
		<?php 
View::javascripts();
开发者ID:sanusi87,项目名称:project_one,代码行数:31,代码来源:main.php

示例4: Config

<?php

/**
 * File: index.php
 * User: zacharydubois
 * Date: 2016-01-04
 * Time: 20:47
 * Project: Digital-Footprint-Profile
 */
namespace dfp;

// Create objects.
$config = new Config();
$view = new View($config);
$nav = new Nav($config);
// Create nav (Index is empty).
$nav->setActive('');
// Tell view the nav array.
$view->navArray($nav->navArray());
// Tell view what template and content.
$view->tpl('index');
$view->content(array('title' => 'Welcome | Digital Footprint Profile', 'sessionLink' => Utility::buildFullLink($config, true, 'session')));
echo $view->render();
开发者ID:ZacharyDuBois,项目名称:Digital-Footprint-Profile,代码行数:23,代码来源:index.php

示例5: view_yield

function view_yield()
{
    return View::content();
}
开发者ID:xtiurti,项目名称:web-service-lavanderia-encoder,代码行数:4,代码来源:functions.php

示例6: content

/**
 * Envia la salida en buffer al navegador
 *
 */
function content()
{
    View::content();
}
开发者ID:jaigjaig,项目名称:usuario_auth_template_bootstrap,代码行数:8,代码来源:deprecated.php

示例7: Config

<?php

/**
 * File: about.php
 * User: zacharydubois
 * Date: 2016-01-04
 * Time: 20:47
 * Project: Digital-Footprint-Profile
 */
namespace dfp;

// Create objects.
$config = new Config();
$view = new View($config);
$nav = new Nav($config);
// Create nav.
$nav->setActive('about');
// Tell view the nav array.
$view->navArray($nav->navArray());
// Tell view what template and content.
$view->tpl('about');
$view->content(array('title' => 'About | Digital Footprint Profile'));
echo $view->render();
开发者ID:ZacharyDuBois,项目名称:Digital-Footprint-Profile,代码行数:23,代码来源:about.php

示例8: array

 function draw_main($content)
 {
     self::$content = $content;
     $attributes = array("id" => HTML_CONTENT, "class" => HTML_CONTENT_CLASS);
     $main_start = BuildHTML::start_element(self::$div, $attributes);
     $main_end = BuildHTML::end_element(self::$div);
     echo $main_start;
     echo self::$content;
     echo $main_end;
 }
开发者ID:csteach402,项目名称:source,代码行数:10,代码来源:view.php

示例9: setContent

 /**
  * 
  * @param string $content
  * @author Nanhe Kumar <nanhe.kumar@gmail.com>
  */
 public static function setContent($content)
 {
     self::$content = $content;
 }
开发者ID:andrewyang96,项目名称:phpmongodb,代码行数:9,代码来源:View.php

示例10: Session

// Session
$session = new Session($config);
if ($session->getTMP('allowNext') !== true) {
    header('Location: ' . Utility::buildFullLink($config, false, 'session'));
} else {
    // View
    $nav = new Nav($config);
    $nav->setActive('list');
    $view = new View($config);
    $view->tpl('list');
    $view->navArray($nav->navArray(true));
    // Parse
    $parse = new Parse();
    // List array
    $list = array();
    $total = 0;
    $flagged = 0;
    foreach ($session->get('posts') as $post) {
        $content = preg_replace('/(\\n)/', ' ', $post['content']);
        $parse->parse($content);
        $score = $parse->score();
        $tags = $parse->tags();
        if ($score >= 3) {
            $list[] = array('url' => $post['url'], 'score' => $score, 'tags' => $tags, 'content' => $content);
            $flagged++;
        }
        $total++;
    }
    $view->content(array('title' => 'Your Posts | Digital Footprint Profile', 'posts' => $list, 'total' => $total, 'flagged' => $flagged));
    echo $view->render();
}
开发者ID:ZacharyDuBois,项目名称:Digital-Footprint-Profile,代码行数:31,代码来源:list.php

示例11: editardoc

 public function editardoc()
 {
     View::content('editardoc');
 }
开发者ID:eldister,项目名称:sistem-gestion-documental,代码行数:4,代码来源:documento_controller.php

示例12: Config

<?php

/**
 * File: terms.php
 * User: zacharydubois
 * Date: 2016-01-04
 * Time: 20:47
 * Project: Digital-Footprint-Profile
 */
namespace dfp;

// Create objects.
$config = new Config();
$view = new View($config);
$nav = new Nav($config);
// Create nav.
$nav->setActive('terms');
// Tell view the nav array.
$view->navArray($nav->navArray());
// Tell view what template and content.
$view->tpl('terms');
$view->content(array('title' => 'Terms | Digital Footprint Profile'));
echo $view->render();
开发者ID:ZacharyDuBois,项目名称:Digital-Footprint-Profile,代码行数:23,代码来源:terms.php

示例13: Config

<?php

/**
 * File: privacy.php
 * User: zacharydubois
 * Date: 2016-01-04
 * Time: 20:48
 * Project: Digital-Footprint-Profile
 */
namespace dfp;

// Create objects.
$config = new Config();
$view = new View($config);
$nav = new Nav($config);
// Create nav.
$nav->setActive('privacy');
// Tell view the nav array.
$view->navArray($nav->navArray());
// Tell view what template and content.
$view->tpl('privacy');
$view->content(array('title' => 'Privacy | Digital Footprint Profile'));
echo $view->render();
开发者ID:ZacharyDuBois,项目名称:Digital-Footprint-Profile,代码行数:23,代码来源:privacy.php

示例14: Config

 */
namespace dfp;

// Create config
$config = new Config();
// Create session instance.
$session = new Session($config);
// Create Nav
$nav = new Nav($config);
$nav->setActive('session');
// Create view.
$view = new View($config);
$view->navArray($nav->navArray(true));
$view->tpl('session');
// Twitter
if ($session->getTMP('twitter_name') === false) {
    $twitter = new Twitter($config, $session);
    $twitterButton = array('url' => $twitter->authorizeURL(), 'text' => 'Login with Twitter', 'classes' => '');
} else {
    $twitterButton = array('url' => '#', 'text' => 'Twitter: @' . $session->getTMP('twitter_name'), 'classes' => 'disabled');
}
// Facebook
if ($session->getTMP('facebook_name') === false) {
    $facebook = new Facebook($config, $session);
    $facebookButton = array('url' => $facebook->authorizeURL(), 'text' => 'Login with Facebook', 'classes' => '');
} else {
    $facebookButton = array('url' => '#', 'text' => 'Facebook: ' . $session->getTMP('facebook_name'), 'classes' => 'disabled');
}
// Render and return
$view->content(array('title' => 'Start | Digital Footprint Profile', 'listURL' => Utility::buildFullLink($config, false, 'session/list'), 'loginButtons' => array($twitterButton, $facebookButton)));
echo $view->render();
开发者ID:ZacharyDuBois,项目名称:Digital-Footprint-Profile,代码行数:31,代码来源:session.php


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