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


PHP Display::render方法代码示例

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


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

示例1: parse

 public function parse($data, $file, $filters = array(), $content_var = 'the_content')
 {
     $display = new Display((array) $filters);
     $display->meta = $this->meta;
     $display->meta[$content_var] = $data;
     return $display->render('layouts/' . $file);
 }
开发者ID:nanotech,项目名称:webcore,代码行数:7,代码来源:Layout.php

示例2: testRender4

 /**
  * @covers Geissler\CSL\Rendering\Display::render
  */
 public function testRender4()
 {
     $this->initElement('<text variable="note"/>');
     $this->assertEquals('Hello Word', $this->object->render('Hello Word'));
 }
开发者ID:geissler,项目名称:csl,代码行数:8,代码来源:DisplayTest.php

示例3: render

<?php

use Color\Component\Color;
use Color\Component\ColorInterface;
class Display
{
    public function render($value)
    {
        return $value;
    }
}
$color = new Color();
$display = new Display();
echo $color->display('cyan', $display->render('Hello World'));
开发者ID:faizalpribadi,项目名称:color,代码行数:14,代码来源:display.php

示例4: display

/**
 * Rendering Content
 * 
 * This function will be used for subelements, arrays and skip objects in skip elements.
 *
 * @param mixed $content Content to render
 * @param boolean $hide Hiding content
 * @package Skip
 * @since 1.0
 * @return string The content of the element
 * @ignore
 */
function display($content, $hide = FALSE)
{
    $display = new Display();
    return $display->render($content, $hide);
}
开发者ID:antoniorequenalorente,项目名称:Fanpage-import,代码行数:17,代码来源:display.php

示例5: render

 public function render($id = false, $view = false, $display = false)
 {
     global $Display;
     if ($view === false) {
         $view = $this->view;
     }
     if ($display === false) {
         $display = new Display(array('PlainPHP'));
     } elseif (is_array($display)) {
         $filters = $display;
         $display = new Display($filters);
     }
     $display->meta += array('action' => $this->action, 'method' => $this->method, 'id' => $id, 'submit' => $this->submit);
     $display->meta['inputs'] = $this->inputs;
     return $display->render($view);
 }
开发者ID:nanotech,项目名称:webcore,代码行数:16,代码来源:Form.php

示例6: Display

$display = new Display($pages, function ($page, $args, $page_key) use($pages) {
    extract($args, EXTR_SKIP);
    if (file_exists($page->script)) {
        require $page->script;
    } else {
        require $pages["not-found"]->script;
    }
    if (gettype($output) !== 'array') {
        $output = array("message" => $output);
    }
    if (isset($success) && !isset($output['success'])) {
        $output['success'] = $success;
    }
    if (isset($status) && !isset($output['status'])) {
        $output['status'] = $status;
    }
    if (!isset($output['success'])) {
        $output['success'] = TRUE;
    }
    if (!isset($output['status'])) {
        $output['status'] = "200 OK";
        if (!isset($output['success'])) {
            $output['success'] = TRUE;
        }
    }
    // Move status and success to front of output
    $output = array_merge(array("status" => $output['status'], "success" => $output['success']), $output);
    output("json", $output, $output['status']);
});
echo $display->render($route_match['route']['page'], $args);
开发者ID:4534-WiredWizards,项目名称:ScoutingApp,代码行数:30,代码来源:index.php


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