X7ROOT File Manager
Current Path:
/home/gfecatvj/sites/restate/vendor/botble/shortcode/src/View
home
/
gfecatvj
/
sites
/
restate
/
vendor
/
botble
/
shortcode
/
src
/
View
/
📁
..
📄
Factory.php
(1.63 KB)
📄
View.php
(2.52 KB)
Editing: View.php
<?php namespace Botble\Shortcode\View; use ArrayAccess; use Botble\Shortcode\Compilers\ShortcodeCompiler; use Illuminate\Contracts\Support\Renderable; use Illuminate\View\View as IlluminateView; class View extends IlluminateView implements ArrayAccess, Renderable { /** * Short code engine resolver * * @var ShortcodeCompiler */ public $shortcode; /** * Create a new view instance. * * @param \Illuminate\View\Factory|Factory $factory * @param \Illuminate\Contracts\View\Engine $engine * @param string $view * @param string $path * @param array $data * @param ShortcodeCompiler $shortcode * @since 2.1 */ public function __construct(Factory $factory, $engine, $view, $path, $data = [], ShortcodeCompiler $shortcode) { parent::__construct($factory, $engine, $view, $path, $data); $this->shortcode = $shortcode; } /** * Enable the shortcodes * @since 2.1 */ public function withShortcodes() { $this->shortcode->enable(); return $this; } /** * Disable the shortcodes * @since 2.1 */ public function withoutShortcodes() { $this->shortcode->disable(); return $this; } /** * @return $this * @since 2.1 */ public function withStripShortcodes() { $this->shortcode->setStrip(true); return $this; } /** * Get the contents of the view instance. * * @return string * @since 2.1 */ protected function renderContents() { // We will keep track of the amount of views being rendered so we can flush // the section after the complete rendering operation is done. This will // clear out the sections for any separate views that may be rendered. $this->factory->incrementRender(); $this->factory->callComposer($this); $contents = $this->getContents(); if ($this->shortcode->getStrip()) { // strip content without shortcodes $contents = $this->shortcode->strip($contents); } else { // compile the shortcodes $contents = $this->shortcode->compile($contents); } // Once we've finished rendering the view, we'll decrement the render count // so that each sections get flushed out next time a view is created and // no old sections are staying around in the memory of an environment. $this->factory->decrementRender(); return $contents; } }
Upload File
Create Folder