DocumentationPage
extends BaseMarkdownPage
in package
Page class for documentation pages.
Documentation pages are stored in the _docs directory and using the .md extension. The Markdown will be compiled to HTML using the documentation page layout to the _site/docs/ directory.
Tags
Table of Contents
Properties
- $fileExtension : string
- $identifier : string
- $markdown : Markdown
- $matter : FrontMatter
- $metadata : PageMetadataBag
- $navigation : NavigationData
- $outputDirectory : string
- $routeKey : string
- $sourceDirectory : string
- $template : string
- $title : string
Methods
- __construct() : mixed
- Construct a new page instance.
- all() : PageCollection<string|int, static>
- Get a collection of all pages, parsed into page models.
- arraySerialize() : array<string|int, mixed>
- Recursively serialize Arrayables
- baseRouteKey() : string
- Get the route key base for the page model.
- compile() : string
- Compile the page into static HTML.
- data() : FrontMatter|mixed
- Get a value from the computed page data, or fallback to the page's front matter, then to the default value.
- fileExtension() : string
- Get the file extension of the source files for the page type.
- files() : array<string|int, string>
- Get an array of all the source file identifiers for the model.
- get() : static
- Get a page instance from the Kernel's page index by its identifier.
- getBladeView() : string
- Get the Blade template/view key for the page.
- getCanonicalUrl() : string|null
- Get the canonical URL for the page to use in the `<link rel="canonical">` tag.
- getIdentifier() : string
- Get the page model's identifier property.
- getLink() : string
- Format the page instance to a URL path, with support for pretty URLs if enabled.
- getOnlineSourcePath() : string|false
- getOutputPath() : string
- Get the path where the compiled page will be saved.
- getRoute() : Route
- Get the route object for the page.
- getRouteKey() : string
- Get the route key for the page.
- getSourcePath() : string
- Get the path to the instance source file, relative to the project root.
- getTableOfContents() : string
- Generate Table of Contents as HTML from a Markdown document body.
- has() : bool
- See if a value exists in the computed page data or the front matter.
- hasTableOfContents() : bool
- home() : Route|null
- homeRouteName() : string
- isDiscoverable() : bool
- Returns whether the page type is discoverable through auto-discovery.
- jsonSerialize() : array<string|int, mixed>
- make() : static
- Create a new page instance. Static alias for the constructor.
- markdown() : Markdown
- Return the document's Markdown object.
- matter() : FrontMatter|mixed
- Get the front matter object, or a value from within.
- metadata() : PageMetadataBag
- Get the generated metadata for the page.
- navigationMenuGroup() : string|null
- Get the group of the page in the navigation menu, if any.
- navigationMenuLabel() : string
- Get the label of the page in the navigation menu.
- navigationMenuPriority() : int
- Get the priority of the page in the navigation menu.
- outputDirectory() : string
- Get the output subdirectory to store compiled HTML files for the page type.
- outputPath() : string
- Qualify a page identifier into a target output file path, relative to the _site output directory.
- parse() : static
- Parse a source file into a new page model instance.
- path() : string
- Get an absolute file path to the page's source directory, or a file within it.
- pathToIdentifier() : string
- Format a filename to an identifier for a given model. Unlike the basename function, any nested paths within the source directory are retained in order to satisfy the page identifier definition.
- save() : $this
- Save the Markdown page object to disk by compiling the front matter array to YAML and writing the body to the file.
- setFileExtension() : void
- Set the file extension for the page type.
- setOutputDirectory() : void
- Set the source directory for the page type.
- setSourceDirectory() : void
- Set the output directory for the page type.
- showInNavigation() : bool
- Can the page be shown in the navigation menu?
- sourceDirectory() : string
- Get the directory where source files are stored for the page type.
- sourcePath() : string
- Qualify a page identifier into file path to the source file, relative to the project root.
- title() : string
- Get the page title to display in HTML tags like `<title>` and `<meta>` tags.
- toArray() : array<string|int, mixed>
- Get the instance as an array.
- toCoreDataObject() : CoreDataObject
- toJson() : string
- assignFactoryData() : void
- automaticallySerialize() : array<string|int, mixed>
- Automatically serialize all public properties.
- constructFactoryData() : void
- constructMetadata() : void
Properties
$fileExtension
public
static string
$fileExtension
= '.md'
$identifier read-only
public
string
$identifier
$markdown
public
Markdown
$markdown
$matter
public
FrontMatter
$matter
$metadata
public
PageMetadataBag
$metadata
$navigation
public
NavigationData
$navigation
$outputDirectory
public
static string
$outputDirectory
= 'docs'
$routeKey read-only
public
string
$routeKey
$sourceDirectory
public
static string
$sourceDirectory
= '_docs'
$template
public
static string
$template
= 'hyde::layouts/docs'
$title read-only
public
string
$title
Methods
__construct()
Construct a new page instance.
public
__construct([string $identifier = '' ][, FrontMatter|array<string|int, mixed> $matter = [] ][, Markdown|string $markdown = '' ]) : mixed
Parameters
- $identifier : string = ''
- $matter : FrontMatter|array<string|int, mixed> = []
- $markdown : Markdown|string = ''
Tags
all()
Get a collection of all pages, parsed into page models.
public
static all() : PageCollection<string|int, static>
Return values
PageCollection<string|int, static>arraySerialize()
Recursively serialize Arrayables
public
arraySerialize() : array<string|int, mixed>
Return values
array<string|int, mixed>baseRouteKey()
Get the route key base for the page model.
public
static baseRouteKey() : string
This is the same value as the output directory.
Return values
stringcompile()
Compile the page into static HTML.
public
compile() : string
Tags
Return values
string —The compiled HTML for the page.
data()
Get a value from the computed page data, or fallback to the page's front matter, then to the default value.
public
data([string $key = null ][, mixed $default = null ]) : FrontMatter|mixed
Parameters
- $key : string = null
- $default : mixed = null
Return values
FrontMatter|mixedfileExtension()
Get the file extension of the source files for the page type.
public
static fileExtension() : string
Return values
stringfiles()
Get an array of all the source file identifiers for the model.
public
static files() : array<string|int, string>
Note that the values do not include the source directory or file extension.
Return values
array<string|int, string>get()
Get a page instance from the Kernel's page index by its identifier.
public
static get(string $identifier) : static
Parameters
- $identifier : string
Tags
Return values
staticgetBladeView()
Get the Blade template/view key for the page.
public
getBladeView() : string
Return values
stringgetCanonicalUrl()
Get the canonical URL for the page to use in the `<link rel="canonical">` tag.
public
getCanonicalUrl() : string|null
It can be explicitly set in the front matter using the canonicalUrl
key,
otherwise it will be generated based on the site URL and the output path,
unless there is no configured base URL, leading to this returning null.
Return values
string|nullgetIdentifier()
Get the page model's identifier property.
public
getIdentifier() : string
The identifier is the part between the source directory and the file extension. It may also be known as a 'slug', or previously 'basename', but it retains the nested path structure if the page is stored in a subdirectory.
For example, the identifier of a source file stored as '_pages/about/contact.md' would be 'about/contact', and 'pages/about.md' would simply be 'about'.
Return values
stringgetLink()
Format the page instance to a URL path, with support for pretty URLs if enabled.
public
getLink() : string
Note that the link is always relative to site root, and does not contain ../
segments.
Return values
stringgetOnlineSourcePath()
public
getOnlineSourcePath() : string|false
Tags
Return values
string|falsegetOutputPath()
Get the path where the compiled page will be saved.
public
getOutputPath() : string
If flattened outputs are enabled, this will use the identifier basename so nested pages are flattened.
Return values
string —Path relative to the site output directory.
getRoute()
Get the route object for the page.
public
getRoute() : Route
Return values
RoutegetRouteKey()
Get the route key for the page.
public
getRouteKey() : string
If flattened outputs are enabled, this will use the identifier basename so nested pages are flattened.
Return values
stringgetSourcePath()
Get the path to the instance source file, relative to the project root.
public
getSourcePath() : string
Return values
stringgetTableOfContents()
Generate Table of Contents as HTML from a Markdown document body.
public
getTableOfContents() : string
Return values
stringhas()
See if a value exists in the computed page data or the front matter.
public
has(string $key) : bool
Parameters
- $key : string
Return values
boolhasTableOfContents()
public
static hasTableOfContents() : bool
Return values
boolhome()
public
static home() : Route|null
Return values
Route|nullhomeRouteName()
public
static homeRouteName() : string
Return values
stringisDiscoverable()
Returns whether the page type is discoverable through auto-discovery.
public
static isDiscoverable() : bool
Return values
booljsonSerialize()
public
jsonSerialize() : array<string|int, mixed>
Tags
Return values
array<string|int, mixed>make()
Create a new page instance. Static alias for the constructor.
public
static make([string $identifier = '' ][, FrontMatter|array<string|int, mixed> $matter = [] ][, Markdown|string $markdown = '' ]) : static
Parameters
- $identifier : string = ''
- $matter : FrontMatter|array<string|int, mixed> = []
- $markdown : Markdown|string = ''
Tags
Return values
staticmarkdown()
Return the document's Markdown object.
public
markdown() : Markdown
Tags
Return values
Markdownmatter()
Get the front matter object, or a value from within.
public
matter([string $key = null ][, mixed $default = null ]) : FrontMatter|mixed
Parameters
- $key : string = null
- $default : mixed = null
Return values
FrontMatter|mixedmetadata()
Get the generated metadata for the page.
public
metadata() : PageMetadataBag
Return values
PageMetadataBagnavigationMenuGroup()
Get the group of the page in the navigation menu, if any.
public
navigationMenuGroup() : string|null
Return values
string|nullnavigationMenuLabel()
Get the label of the page in the navigation menu.
public
navigationMenuLabel() : string
Return values
stringnavigationMenuPriority()
Get the priority of the page in the navigation menu.
public
navigationMenuPriority() : int
Return values
intoutputDirectory()
Get the output subdirectory to store compiled HTML files for the page type.
public
static outputDirectory() : string
Return values
stringoutputPath()
Qualify a page identifier into a target output file path, relative to the _site output directory.
public
static outputPath(string $identifier) : string
Parameters
- $identifier : string
Return values
stringparse()
Parse a source file into a new page model instance.
public
static parse(string $identifier) : static
Parameters
- $identifier : string
-
The identifier of the page to parse.
Tags
Return values
static —New page model instance for the parsed source file.
path()
Get an absolute file path to the page's source directory, or a file within it.
public
static path([string $path = '' ]) : string
Parameters
- $path : string = ''
Return values
stringpathToIdentifier()
Format a filename to an identifier for a given model. Unlike the basename function, any nested paths within the source directory are retained in order to satisfy the page identifier definition.
public
static pathToIdentifier(string $path) : string
Parameters
- $path : string
-
Example: index.blade.php
Return values
string —Example: index
save()
Save the Markdown page object to disk by compiling the front matter array to YAML and writing the body to the file.
public
save() : $this
Return values
$thissetFileExtension()
Set the file extension for the page type.
public
static setFileExtension(string $fileExtension) : void
Parameters
- $fileExtension : string
setOutputDirectory()
Set the source directory for the page type.
public
static setOutputDirectory(string $outputDirectory) : void
Parameters
- $outputDirectory : string
setSourceDirectory()
Set the output directory for the page type.
public
static setSourceDirectory(string $sourceDirectory) : void
Parameters
- $sourceDirectory : string
showInNavigation()
Can the page be shown in the navigation menu?
public
showInNavigation() : bool
Return values
boolsourceDirectory()
Get the directory where source files are stored for the page type.
public
static sourceDirectory() : string
Return values
stringsourcePath()
Qualify a page identifier into file path to the source file, relative to the project root.
public
static sourcePath(string $identifier) : string
Parameters
- $identifier : string
Return values
stringtitle()
Get the page title to display in HTML tags like `<title>` and `<meta>` tags.
public
title() : string
Return values
stringtoArray()
Get the instance as an array.
public
toArray() : array<string|int, mixed>
Return values
array<string|int, mixed>toCoreDataObject()
public
toCoreDataObject() : CoreDataObject
Return values
CoreDataObjecttoJson()
public
toJson([int $options = 0 ]) : string
Parameters
- $options : int = 0
Return values
stringassignFactoryData()
protected
assignFactoryData(PageDataFactory $factory) : void
Parameters
- $factory : PageDataFactory
automaticallySerialize()
Automatically serialize all public properties.
protected
automaticallySerialize() : array<string|int, mixed>
Return values
array<string|int, mixed>constructFactoryData()
protected
constructFactoryData() : void
constructMetadata()
protected
constructMetadata() : void