/home
/startoirae
/www
/newlife
/storage
/views
/e97aa95fe25fd45b9678b387e1df2b555b997d7e.php
<?php
if (isset($bgColor) && isset($fontColor)) {
$color = [
'bg_color' => $bgColor,
'color' => $fontColor
];
} else if (isset($post)) {
$color = PageHeader::getHeaderColors(!empty($post)? $post->ID : null);
} elseif (isset($template)) {
$post = $post;
$color = PageHeader::getHeaderColors($post->ID);
} else {
$color = PageHeader::getHeaderColors();
}
if (!isset($subtitle) && isset($post->post_excerpt) && !empty($post->post_excerpt)) {
$subtitle = $post->post_excerpt;
}
?>
<section id="page_header" style="<?php echo e(Css::bgColor($color['bg_color'])); ?>">
<div class="inner-wrap">
<h1 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e(isset($title) ? $title : $post->post_title); ?>
</h1>
<?php if(isset($subtitle)): ?>
<h2 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e($subtitle); ?>
</h2>
<?php endif; ?>
</div>
</section>
/home
/startoirae
/www
/newlife
/storage
/views
/e97aa95fe25fd45b9678b387e1df2b555b997d7e.php
<?php
if (isset($bgColor) && isset($fontColor)) {
$color = [
'bg_color' => $bgColor,
'color' => $fontColor
];
} else if (isset($post)) {
$color = PageHeader::getHeaderColors(!empty($post)? $post->ID : null);
} elseif (isset($template)) {
$post = $post;
$color = PageHeader::getHeaderColors($post->ID);
} else {
$color = PageHeader::getHeaderColors();
}
if (!isset($subtitle) && isset($post->post_excerpt) && !empty($post->post_excerpt)) {
$subtitle = $post->post_excerpt;
}
?>
<section id="page_header" style="<?php echo e(Css::bgColor($color['bg_color'])); ?>">
<div class="inner-wrap">
<h1 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e(isset($title) ? $title : $post->post_title); ?>
</h1>
<?php if(isset($subtitle)): ?>
<h2 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e($subtitle); ?>
</h2>
<?php endif; ?>
</div>
</section>
/home
/startoirae
/www
/newlife
/storage
/views
/e97aa95fe25fd45b9678b387e1df2b555b997d7e.php
<?php
if (isset($bgColor) && isset($fontColor)) {
$color = [
'bg_color' => $bgColor,
'color' => $fontColor
];
} else if (isset($post)) {
$color = PageHeader::getHeaderColors(!empty($post)? $post->ID : null);
} elseif (isset($template)) {
$post = $post;
$color = PageHeader::getHeaderColors($post->ID);
} else {
$color = PageHeader::getHeaderColors();
}
if (!isset($subtitle) && isset($post->post_excerpt) && !empty($post->post_excerpt)) {
$subtitle = $post->post_excerpt;
}
?>
<section id="page_header" style="<?php echo e(Css::bgColor($color['bg_color'])); ?>">
<div class="inner-wrap">
<h1 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e(isset($title) ? $title : $post->post_title); ?>
</h1>
<?php if(isset($subtitle)): ?>
<h2 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e($subtitle); ?>
</h2>
<?php endif; ?>
</div>
</section>
/home
/startoirae
/www
/newlife
/storage
/views
/e97aa95fe25fd45b9678b387e1df2b555b997d7e.php
<?php
if (isset($bgColor) && isset($fontColor)) {
$color = [
'bg_color' => $bgColor,
'color' => $fontColor
];
} else if (isset($post)) {
$color = PageHeader::getHeaderColors(!empty($post)? $post->ID : null);
} elseif (isset($template)) {
$post = $post;
$color = PageHeader::getHeaderColors($post->ID);
} else {
$color = PageHeader::getHeaderColors();
}
if (!isset($subtitle) && isset($post->post_excerpt) && !empty($post->post_excerpt)) {
$subtitle = $post->post_excerpt;
}
?>
<section id="page_header" style="<?php echo e(Css::bgColor($color['bg_color'])); ?>">
<div class="inner-wrap">
<h1 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e(isset($title) ? $title : $post->post_title); ?>
</h1>
<?php if(isset($subtitle)): ?>
<h2 style="<?php echo e(Css::color($color['color'])); ?>">
<?php echo e($subtitle); ?>
</h2>
<?php endif; ?>
</div>
</section>
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/Engines
/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/Engines
/CompilerEngine.php
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
$compiled = $this->compiler->getCompiledPath($path);
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($compiled, $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// 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;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
protected function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
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();
// 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;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Exception $e) {
$this->factory->flushState();
throw $e;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/home
/startoirae
/www
/newlife
/storage
/views
/fc8fa3a756a4f599771b53335a281580296e2a55.php
<?php $__env->startSection('content'); ?>
<?php echo $__env->make('layouts.pageHeader', \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
<section class="template_blog_card">
<section class="blog">
<section class="articles">
<section class="list">
<?php if(!empty($blog)): ?>
<?php $__currentLoopData = $blog; $__env->addLoop($__currentLoopData); foreach($__currentLoopData as $article): $__env->incrementLoopIndices(); $loop = $__env->getLastLoop(); ?>
<section class="article">
<a href="<?php echo e(Data::permalink($article->ID)); ?>">
<figure>
<img src="<?php echo e(Image::vignetteUrl($article->img)); ?>"
title="<?php echo e($article->post_title); ?>"
alt="<?php echo e(Image::alt($article->img)); ?>"/>
</figure>
</a>
<header>
<a href="<?php echo e(Data::permalink($article->ID)); ?>">
<div class="content">
<a class='taxo'
href="<?php echo e(Data::termlink($article->taxo_slug,$article->taxonomy)); ?>">
<?php echo e($article->taxo_name); ?>
</a>
<h2 class="item-title"><?php echo e($article->post_title); ?></h2>
<time datetime="<?php echo e($article->post_date); ?>"><?php echo e(Data::formatDate($article->post_date)); ?></time>
</div>
</a>
</header>
</section>
<?php endforeach; $__env->popLoop(); $loop = $__env->getLastLoop(); ?>
<?php endif; ?>
</section>
<?php echo $__env->make('utils.pagination', \Illuminate\Support\Arr::except(get_defined_vars(), array('__data', '__path')))->render(); ?>
</section>
<section class="blog-sidebar outer-content">
<?php if(is_active_sidebar( 'blog-sidebar' )): ?>
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/Engines
/PhpEngine.php
/**
* Get the evaluated contents of the view at the given path.
*
* @param string $__path
* @param array $__data
* @return string
*/
protected function evaluatePath($__path, $__data)
{
$obLevel = ob_get_level();
ob_start();
extract($__data, EXTR_SKIP);
// We'll evaluate the contents of the view inside a try/catch block so we can
// flush out any stray output that might get out before an error occurs or
// an exception is thrown. This prevents any partial views from leaking.
try {
include $__path;
} catch (Exception $e) {
$this->handleViewException($e, $obLevel);
} catch (Throwable $e) {
$this->handleViewException(new FatalThrowableError($e), $obLevel);
}
return ltrim(ob_get_clean());
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/Engines
/CompilerEngine.php
* @param array $data
* @return string
*/
public function get($path, array $data = [])
{
$this->lastCompiled[] = $path;
// If this given view has expired, which means it has simply been edited since
// it was last compiled, we will re-compile the views so we can evaluate a
// fresh copy of the view. We'll pass the compiler the path of the view.
if ($this->compiler->isExpired($path)) {
$this->compiler->compile($path);
}
$compiled = $this->compiler->getCompiledPath($path);
// Once we have the path to the compiled file, we will evaluate the paths with
// typical PHP just like any other templates. We also keep a stack of views
// which have been rendered for right exception messages to be generated.
$results = $this->evaluatePath($compiled, $data);
array_pop($this->lastCompiled);
return $results;
}
/**
* Handle a view exception.
*
* @param \Exception $e
* @param int $obLevel
* @return void
*
* @throws \Exception
*/
protected function handleViewException(Exception $e, $obLevel)
{
$e = new ErrorException($this->getMessage($e), 0, 1, $e->getFile(), $e->getLine(), $e);
parent::handleViewException($e, $obLevel);
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/View.php
$this->factory->callComposer($this);
$contents = $this->getContents();
// 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;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
* Get the data bound to the view instance.
*
* @return array
*/
protected function gatherData()
{
$data = array_merge($this->factory->getShared(), $this->data);
foreach ($data as $key => $value) {
if ($value instanceof Renderable) {
$data[$key] = $value->render();
}
}
return $data;
}
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/View.php
throw $e;
}
}
/**
* Get the contents of the view instance.
*
* @return string
*/
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();
// 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;
}
/**
* Get the evaluated contents of the view.
*
* @return string
*/
protected function getContents()
{
return $this->engine->get($this->path, $this->gatherData());
}
/**
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/view
/View.php
$this->view = $view;
$this->path = $path;
$this->engine = $engine;
$this->factory = $factory;
$this->data = $data instanceof Arrayable ? $data->toArray() : (array) $data;
}
/**
* Get the string contents of the view.
*
* @param callable|null $callback
* @return string
*
* @throws \Throwable
*/
public function render(callable $callback = null)
{
try {
$contents = $this->renderContents();
$response = isset($callback) ? call_user_func($callback, $this, $contents) : null;
// Once we have the contents of the view, we will flush the sections if we are
// done rendering all views so that there is nothing left hanging over when
// another view gets rendered in the future by the application developer.
$this->factory->flushStateIfDoneRendering();
return ! is_null($response) ? $response : $contents;
} catch (Exception $e) {
$this->factory->flushState();
throw $e;
} catch (Throwable $e) {
$this->factory->flushState();
throw $e;
}
}
/home
/startoirae
/www
/newlife
/htdocs
/content
/mu-plugins
/themosis-framework
/src
/Themosis
/helpers.php
if (!function_exists('view')) {
/**
* Helper function to build views.
*
* @param string $view The view relative path, name.
* @param array $data Passed data.
* @param array $mergeData
*
* @return string
*/
function view($view = null, array $data = [], array $mergeData = [])
{
$factory = container('view');
if (func_num_args() === 0) {
return $factory;
}
return $factory->make($view, $data, $mergeData)->render();
}
}
if (!function_exists('meta')) {
/**
* Helper function to get any meta data from objects.
*
* @param string $key
* @param int $id
* @param string $context
* @param bool $single
*
* @return mixed|string
*/
function meta($key = '', $id = null, $context = 'post', $single = true)
{
if (is_null($id)) {
$id = get_the_ID();
}
/home
/startoirae
/www
/newlife
/htdocs
/content
/themes
/NewLife
/resources
/NeidraT
/router
/Router.php
Route::get('tax', [$taxo->getSlug(), function (\WP_Post $post, \WP_Query $query) use ($taxo) {
return self::taxoRouteProcess($taxo, $query);
}]);
}
}
}
}
private static function taxoRouteProcess(Taxonomy $taxo, \WP_Query $query)
{
$taxo->viewLoading($query->queried_object->slug);
$params = $taxo->getDatas();
if ($taxo->getTemplate() instanceof iTaxonomyModule) {
$params['modules'] = $taxo->getPostType()->getModules();
}
return view(RouterUtils::templateView($taxo->getTemplate()->taxonomyViewPath()), $params);
}
/**
* @param AbstractPostType $postType
*/
private static function addSingular(AbstractPostType $postType)
{
if ($postType->isRoutable()) {
Route::get('singular', [$postType->getSlug(), function (\WP_Post $post, \WP_Query $query) use ($postType) {
$postType->viewLoading($post);
$params = $postType->getDatas();
if ($postType->getTemplate() instanceof iSingularModule) {
$params['modules'] = $postType->getModules();
}
return view(RouterUtils::templateView($postType->getTemplate()->singularViewPath()), $params);
/home
/startoirae
/www
/newlife
/htdocs
/content
/themes
/NewLife
/resources
/NeidraT
/router
/Router.php
//Add singular
self::addSingular($postType);
//Add Taxonomies
self::addTaxonomies($postType);
}
}
}
/**
* @param AbstractPostType $postType
*/
private static function addTaxonomies(AbstractPostType $postType)
{
if ($postType->getTaxonomies() && is_array($postType->getTaxonomies())) {
foreach ($postType->getTaxonomies() as $taxo) {
if ($taxo instanceof Taxonomy && $taxo->isRoutable()) {
if ($taxo->getPostType()->getSlug() === 'post') {
Route::get('category', function (\WP_Post $post, \WP_Query $query) use ($taxo) {
return self::taxoRouteProcess($taxo, $query);
});
}
Route::get('tax', [$taxo->getSlug(), function (\WP_Post $post, \WP_Query $query) use ($taxo) {
return self::taxoRouteProcess($taxo, $query);
}]);
}
}
}
}
private static function taxoRouteProcess(Taxonomy $taxo, \WP_Query $query)
{
$taxo->viewLoading($query->queried_object->slug);
$params = $taxo->getDatas();
if ($taxo->getTemplate() instanceof iTaxonomyModule) {
$params['modules'] = $taxo->getPostType()->getModules();
}
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Route.php
* Checks whether the route's action is a controller.
*
* @return bool
*/
protected function isControllerAction()
{
return is_string($this->action['uses']);
}
/**
* Run the route action and return the response.
*
* @return mixed
*/
protected function runCallable()
{
$callable = $this->action['uses'];
return $callable(...array_values($this->resolveMethodDependencies(
$this->parametersWithoutNulls(), new ReflectionFunction($this->action['uses'])
)));
}
/**
* Run the route action and return the response.
*
* @return mixed
*
* @throws \Symfony\Component\HttpKernel\Exception\NotFoundHttpException
*/
protected function runController()
{
return $this->controllerDispatcher()->dispatch(
$this, $this->getController(), $this->getControllerMethod()
);
}
/**
* Get the controller instance for the route.
*
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Route.php
protected function parseAction($action)
{
return RouteAction::parse($this->uri, $action);
}
/**
* Run the route action and return the response.
*
* @return mixed
*/
public function run()
{
$this->container = $this->container ?: new Container;
try {
if ($this->isControllerAction()) {
return $this->runController();
}
return $this->runCallable();
} catch (HttpResponseException $e) {
return $e->getResponse();
}
}
/**
* Checks whether the route's action is a controller.
*
* @return bool
*/
protected function isControllerAction()
{
return is_string($this->action['uses']);
}
/**
* Run the route action and return the response.
*
* @return mixed
*/
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Router.php
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Pipeline.php
use Symfony\Component\Debug\Exception\FatalThrowableError;
/**
* This extended pipeline catches any exceptions that occur during each slice.
*
* The exceptions are converted to HTTP responses for proper middleware handling.
*/
class Pipeline extends BasePipeline
{
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
try {
return $destination($passable);
} catch (Exception $e) {
return $this->handleException($passable, $e);
} catch (Throwable $e) {
return $this->handleException($passable, new FatalThrowableError($e));
}
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
protected function carry()
{
return function ($stack, $pipe) {
return function ($passable) use ($stack, $pipe) {
try {
$slice = parent::carry();
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/pipeline
/Pipeline.php
public function via($method)
{
$this->method = $method;
return $this;
}
/**
* Run the pipeline with a final destination callback.
*
* @param \Closure $destination
* @return mixed
*/
public function then(Closure $destination)
{
$pipeline = array_reduce(
array_reverse($this->pipes), $this->carry(), $this->prepareDestination($destination)
);
return $pipeline($this->passable);
}
/**
* Get the final piece of the Closure onion.
*
* @param \Closure $destination
* @return \Closure
*/
protected function prepareDestination(Closure $destination)
{
return function ($passable) use ($destination) {
return $destination($passable);
};
}
/**
* Get a Closure that represents a slice of the application onion.
*
* @return \Closure
*/
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Router.php
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
->then(function ($request) use ($route) {
return $this->prepareResponse(
$request, $route->run()
);
});
}
/**
* Gather the middleware for the given route with resolved class names.
*
* @param \Illuminate\Routing\Route $route
* @return array
*/
public function gatherRouteMiddleware(Route $route)
{
$middleware = collect($route->gatherMiddleware())->map(function ($name) {
return (array) MiddlewareNameResolver::resolve($name, $this->middleware, $this->middlewareGroups);
})->flatten();
return $this->sortMiddleware($middleware);
}
/**
* Sort the given middleware by priority.
*
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Router.php
return $route;
}
/**
* Return the response for the given route.
*
* @param \Illuminate\Http\Request $request
* @param \Illuminate\Routing\Route $route
* @return mixed
*/
protected function runRoute(Request $request, Route $route)
{
$request->setRouteResolver(function () use ($route) {
return $route;
});
$this->events->dispatch(new Events\RouteMatched($route, $request));
return $this->prepareResponse($request,
$this->runRouteWithinStack($route, $request)
);
}
/**
* Run the given route within a Stack "onion" instance.
*
* @param \Illuminate\Routing\Route $route
* @param \Illuminate\Http\Request $request
* @return mixed
*/
protected function runRouteWithinStack(Route $route, Request $request)
{
$shouldSkipMiddleware = $this->container->bound('middleware.disable') &&
$this->container->make('middleware.disable') === true;
$middleware = $shouldSkipMiddleware ? [] : $this->gatherRouteMiddleware($route);
return (new Pipeline($this->container))
->send($request)
->through($middleware)
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Router.php
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
{
$this->current = $route = $this->routes->match($request);
$this->container->instance(Route::class, $route);
return $route;
}
/**
* Return the response for the given route.
*
/home
/startoirae
/www
/newlife
/vendor
/illuminate
/routing
/Router.php
* @return mixed
*/
public function respondWithRoute($name)
{
$route = tap($this->routes->getByName($name))->bind($this->currentRequest);
return $this->runRoute($this->currentRequest, $route);
}
/**
* Dispatch the request to the application.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Http\Response|\Illuminate\Http\JsonResponse
*/
public function dispatch(Request $request)
{
$this->currentRequest = $request;
return $this->dispatchToRoute($request);
}
/**
* Dispatch the request to a route and return the response.
*
* @param \Illuminate\Http\Request $request
* @return mixed
*/
public function dispatchToRoute(Request $request)
{
return $this->runRoute($request, $this->findRoute($request));
}
/**
* Find the route matching a given request.
*
* @param \Illuminate\Http\Request $request
* @return \Illuminate\Routing\Route
*/
protected function findRoute($request)
/home
/startoirae
/www
/newlife
/htdocs
/content
/mu-plugins
/themosis-framework
/themosis.php
* Register framework assets.
*/
$this->container['asset']->add('themosis-core-styles', 'css/_themosisCore.css', ['wp-color-picker'])->to('admin');
$this->container['asset']->add('themosis-core-scripts', 'js/_themosisCore.js', ['jquery', 'jquery-ui-sortable', 'underscore', 'backbone', 'mce-view', 'wp-color-picker'], '1.3.0', true)->to('admin');
}
/**
* Hook into front-end routing.
* Setup the router API to be executed before
* theme default templates.
*/
public function setRouter()
{
if (is_feed() || is_comment_feed()) {
return;
}
try {
$request = $this->container['request'];
$response = $this->container['router']->dispatch($request);
// We only send back the content because, headers are already defined
// by WordPress internals.
$response->sendContent();
} catch (\Symfony\Component\HttpKernel\Exception\NotFoundHttpException $exception) {
/*
* Fallback to WordPress templates.
*/
}
}
/**
* Enqueue Admin scripts.
*/
public function adminEnqueueScripts()
{
/*
* Make sure the media scripts are always enqueued.
*/
wp_enqueue_media();
/home
/startoirae
/www
/newlife
/htdocs
/cms
/wp-includes
/class-wp-hook.php
$this->iterations[ $nesting_level ] = $this->priorities;
$num_args = count( $args );
do {
$this->current_priority[ $nesting_level ] = current( $this->iterations[ $nesting_level ] );
$priority = $this->current_priority[ $nesting_level ];
foreach ( $this->callbacks[ $priority ] as $the_ ) {
if ( ! $this->doing_action ) {
$args[0] = $value;
}
// Avoid the array_slice() if possible.
if ( 0 === $the_['accepted_args'] ) {
$value = call_user_func( $the_['function'] );
} elseif ( $the_['accepted_args'] >= $num_args ) {
$value = call_user_func_array( $the_['function'], $args );
} else {
$value = call_user_func_array( $the_['function'], array_slice( $args, 0, $the_['accepted_args'] ) );
}
}
} while ( false !== next( $this->iterations[ $nesting_level ] ) );
unset( $this->iterations[ $nesting_level ] );
unset( $this->current_priority[ $nesting_level ] );
--$this->nesting_level;
return $value;
}
/**
* Calls the callback functions that have been added to an action hook.
*
* @since 4.7.0
*
* @param array $args Parameters to pass to the callback functions.
/home
/startoirae
/www
/newlife
/htdocs
/cms
/wp-includes
/class-wp-hook.php
} while ( false !== next( $this->iterations[ $nesting_level ] ) );
unset( $this->iterations[ $nesting_level ] );
unset( $this->current_priority[ $nesting_level ] );
--$this->nesting_level;
return $value;
}
/**
* Calls the callback functions that have been added to an action hook.
*
* @since 4.7.0
*
* @param array $args Parameters to pass to the callback functions.
*/
public function do_action( $args ) {
$this->doing_action = true;
$this->apply_filters( '', $args );
// If there are recursive calls to the current action, we haven't finished it until we get to the last one.
if ( ! $this->nesting_level ) {
$this->doing_action = false;
}
}
/**
* Processes the functions hooked into the 'all' hook.
*
* @since 4.7.0
*
* @param array $args Arguments to pass to the hook callbacks. Passed by reference.
*/
public function do_all_hook( &$args ) {
$nesting_level = $this->nesting_level++;
$this->iterations[ $nesting_level ] = $this->priorities;
do {
$priority = current( $this->iterations[ $nesting_level ] );
/home
/startoirae
/www
/newlife
/htdocs
/cms
/wp-includes
/plugin.php
if ( ! isset( $wp_filter[ $hook_name ] ) ) {
if ( isset( $wp_filter['all'] ) ) {
array_pop( $wp_current_filter );
}
return;
}
if ( ! isset( $wp_filter['all'] ) ) {
$wp_current_filter[] = $hook_name;
}
if ( empty( $arg ) ) {
$arg[] = '';
} elseif ( is_array( $arg[0] ) && 1 === count( $arg[0] ) && isset( $arg[0][0] ) && is_object( $arg[0][0] ) ) {
// Backward compatibility for PHP4-style passing of `array( &$this )` as action `$arg`.
$arg[0] = $arg[0][0];
}
$wp_filter[ $hook_name ]->do_action( $arg );
array_pop( $wp_current_filter );
}
/**
* Calls the callback functions that have been added to an action hook, specifying arguments in an array.
*
* @since 2.1.0
*
* @see do_action() This function is identical, but the arguments passed to the
* functions hooked to `$hook_name` are supplied using an array.
*
* @global WP_Hook[] $wp_filter Stores all of the filters and actions.
* @global int[] $wp_actions Stores the number of times each action was triggered.
* @global string[] $wp_current_filter Stores the list of current filters with the current one last.
*
* @param string $hook_name The name of the action to be executed.
* @param array $args The arguments supplied to the functions hooked to `$hook_name`.
*/
function do_action_ref_array( $hook_name, $args ) {
/home
/startoirae
/www
/newlife
/htdocs
/cms
/wp-includes
/template-loader.php
<?php
/**
* Loads the correct template based on the visitor's url
*
* @package WordPress
*/
if ( wp_using_themes() ) {
/**
* Fires before determining which template to load.
*
* @since 1.5.0
*/
do_action( 'template_redirect' );
}
/**
* Filters whether to allow 'HEAD' requests to generate content.
*
* Provides a significant performance bump by exiting before the page
* content loads for 'HEAD' requests. See #14348.
*
* @since 3.5.0
*
* @param bool $exit Whether to exit without generating any content for 'HEAD' requests. Default true.
*/
if ( 'HEAD' === $_SERVER['REQUEST_METHOD'] && apply_filters( 'exit_on_http_head', true ) ) {
exit;
}
// Process feeds and trackbacks even if not using themes.
if ( is_robots() ) {
/**
* Fired when the template loader determines a robots.txt request.
*
* @since 2.1.0
*/
do_action( 'do_robots' );
return;
} elseif ( is_favicon() ) {
/**
/home
/startoirae
/www
/newlife
/htdocs
/cms
/wp-blog-header.php
<?php
/**
* Loads the WordPress environment and template.
*
* @package WordPress
*/
if ( ! isset( $wp_did_header ) ) {
$wp_did_header = true;
// Load the WordPress library.
require_once __DIR__ . '/wp-load.php';
// Set up the WordPress query.
wp();
// Load the theme template.
require_once ABSPATH . WPINC . '/template-loader.php';
}
/home
/startoirae
/www
/newlife
/htdocs
/index.php
//
// //Get Header Response
// $response = $http_response_header[0];
//
// if ($response == 'HTTP/1.0 200 OK' || $response == 'HTTP/1.1 200 OK') {
// @mkdir('cache' . $_SERVER['REQUEST_URI'], 0755, true);
// file_put_contents('cache' . $_SERVER['REQUEST_URI'] . 'index.html.gz', gzencode($data, 9));
// } else {
// /** Loads the WordPress Environment and Template */
// require dirname(__FILE__) . '/cms/wp-blog-header.php';
// exit;
// }
// }
// //Read GZ file
// readgzfile('cache' . $_SERVER['REQUEST_URI'] . 'index.html.gz');
//
//} else {
/** Loads the WordPress Environment and Template */
require dirname(__FILE__) . '/cms/wp-blog-header.php';
//}