△ライフサイクル
プラグインによる Grav の拡張をより理解するために、Grav の処理手順(順序)を知っておくと役立つことがあります。これが Grav のライフサイクルです。
index.php
- Check PHP version to ensure we're running at least version 7.1.3
- Class loader initialization
- Obtain Grav instance
Grav.php
- No instance exists, so call
load()
- Add
loader
- Add and initialize
debugger
- Add
grav
(deprecated)
- Register Default Services
- Register Service Providers
- Accounts Service Provider
- Add
permissions
(1.7)
- Add
accounts
(1.6)
- Add
user_groups
(1.7)
- Add
users
(deprecated)
- Assets Service Provider
- Add
assets
- Backups Service Provider
- Add
backups
(1.6)
- Config Service Provider
- Add
setup
- Add
blueprints
- Add
config
- Add
languages
- Add
language
- Error Service Provider
- Add
error
- Filesystem Service Provider
- Add
filesystem
- Flex Service Provider
- Add
flex
(1.7)
- Inflector Service Provider
- Add
inflector
- Logger Service Provider
- Add
log
- Output Service Provider
- Add
output
- Pages Service Provider
- Add
pages
- Add
page
- Request Service Provider
- Add
request
(1.7)
- Scheduler Service Provider
- Add
scheduler
(1.6)
- Session Service Provider
- Add
session
- Add
messages
- Streams Service Provider
- Add
locator
- Add
streams
- Task Service Provider
- Add
task
- Add
action
- Simple Service Providers
- Add
browser
- Add
cache
- Add
events
- Add
exif
- Add
plugins
- Add
taxonomy
- Add
themes
- Add
twig
- Add
uri
- call
Grav::process()
Grav.php
- Run Initialize Processor
- Configuration
- Initialize
$grav['config']
- Initialize
$grav['plugins']
- Logger
- Initialize
$grav['log']
- Errors
- Initialize
$grav['errors']
- Registers PHP error handlers
- Debugger
- Initialize
$grav['debugger']
- Handle debugger requests
- Start output buffering
- Localization
- Set the locale and timezone
- Plugins
- Initialize
$grav['plugins']
- Pages
- Initialize
$grav['pages']
- Uri
- Initialize
$grav['uri']
- Add
$grav['base_url_absolute']
- Add
$grav['base_url_relative']
- Add
$grav['base_url']
- Handle redirect
- Redirect if
system.pages.redirect_trailing_slash
is true and trailing slash in URL
- Accounts
- Initialize
$grav['accounts']
- Session
- Initialize
$grav['session']
if If system.session.initialize
is true
- Run Plugins Processor
- Fire onPluginsInitialized event
- Run Themes Processor
- Initialize
$grav['themes']
- Fire onThemeInitialized event
- Run Request Processor
- Initialize
$grav['request']
- Fire onRequestHandlerInit event with [request, handler]
- If response is set inside the event, stop further processing and output the response
- Run Tasks Processor
- If request has attribute controller.class and either task or action:
- Run the controller
- If
NotFoundException
: continue (check task and action)
- If response code 418: continue (ignore task and action)
- Else: stop further processing and output the response
- If task:
- Fire onTask event
- Fire onTask.[TASK] event
- If action:
- Fire onAction event
- Fire onAction.[ACTION] event
- Run Backups Processor
- Initialize
$grav['backups']
- Fire onBackupsInitialized event
- Run Scheduler Processor
- Initialize
$grav['scheduler']
- Fire onSchedulerInitialized event
- Run Assets Processor
- Initialize
$grav['assets']
- Fire onAssetsInitialized event
- Run Twig Processor
- Initialize
$grav['twig']
Twig.php
- Set Twig template paths based on configuration
- Handle language templates if available
- Fire onTwigTemplatePaths event
- Fire onTwigLoader event
- Load Twig configuration and loader chain
- Fire onTwigInitialized event
- Load Twig extensions
- Fire onTwigExtensions event
- Set standard Twig variables (config, uri, taxonomy, assets, browser, etc)
- Run Pages Processor
- Initialize
$grav['pages']
Pages.php
- Call
buildPages()
- (logic differs somewhat for Flex Pages, but the idea is the same)
- Check if cache is good
- If cache is good load pages date from
- If cache is not good call
recurse()
- Fire onBuildPagesInitialized event in
recurse()
- If a
.md
file is found:
Page.php
- Call
init()
to load the file details
- Set the
filePath
, modified
, id
- Call
header()
to initialize the header variables
- Call
slug()
to set the URL slug
- Call
visible()
to set visible state
- Set
modularTwig()
status based on if folder starts with _
- Fire onPageProcessed event
- If a
folder
found recurse()
the children
- Fire onFolderProcessed event
- Call
buildRoutes()
- Initialize
taxonomy
for all pages
- Build
route
table for fast lookup
- Fire onPagesInitialized event with [pages]
- Fire onPageInitialized event with [page]
- If page is not routable:
- Fire onPageNotFound event with [page]
- If task:
- Fire onPageTask event with [task, page]
- Fire onPageTask.[TASK] event with [task, page]
- If action:
- Fire onPageAction event with [action, page]
- Fire onPageAction.[ACTION] event with [action, page]
- Run Debugger Assets Processor
- Debugbar only: Add the debugger CSS/JS to the assets
- Run Render Processor
- Initialize
$grav['output']
- If
output
instanceof ResponseInterface
:
- Stop further processing and output the response
- Else:
- Render page with Twig's
processSite()
method
Twig.php
- Fire onTwigSiteVariables event
- Get the page output
- Fire onTwigPageVariables, also called for each modular subpage
- If a page is not found or not routable, first fire the onPageFallBackUrl event to see if we have a fallback for a media asset and then fire onPageNotFound if not
- Set all Twig variables on the Twig object
- Set the template name based on file/header/extension information
- Call
render()
method
- Return resulting HTML
- Fire onOutputGenerated event
- Echo the output into output buffer
- Fire onOutputRendered event
- Build Response object
- Stop further processing and output the response
- Output HTTP header and body
- Render debugger (if enabled)
- Shutdown
- Close session
- Close connection to client
- Fire onShutdown event
page.php から、content() メソッドが呼び出されると、次のようなライフサイクルが発生します。
Page.php
- If content is NOT cached:
- Fire onPageContentRaw event
- Process the page according to Markdown and Twig settings. Fire onMarkdownInitialized event
- Fire onPageContentProcessed event
- Fire onPageContent event
元ページ : https://learn.getgrav.org/17/plugins/grav-lifecycle