Elgg  Version 5.1
Public Member Functions | Static Public Member Functions | Public Attributes | Protected Member Functions | Protected Attributes | List of all members
Elgg\ViewsService Class Reference

Views service. More...

Public Member Functions

 __construct (EventsService $events, HttpRequest $request)
 Constructor. More...
 
 setViewtype (string $viewtype= '')
 Set the viewtype. More...
 
 getViewtype ()
 Get the viewtype. More...
 
 isValidViewtype (string $viewtype)
 Checks if $viewtype is a string suitable for use as a viewtype name. More...
 
 autoregisterViews (string $view_base, string $folder, string $viewtype)
 Auto-registers views from a location. More...
 
 findViewFile (string $view, string $viewtype)
 Find the view file. More...
 
 setViewDir (string $view, string $location, string $viewtype= '')
 Set an alternative base location for a view. More...
 
 registerViewtypeFallback (string $viewtype)
 Register a viewtype to fall back to a default view if a view isn't found for that viewtype. More...
 
 doesViewtypeFallback (string $viewtype)
 Checks if a viewtype falls back to default. More...
 
 renderDeprecatedView (string $view, array $vars, string $suggestion, string $version)
 Display a view with a deprecation notice. More...
 
 getViewList (string $view)
 Get the views, including extensions, used to render a view. More...
 
 renderView (string $view, array $vars=[], string $viewtype= '', bool $issue_missing_notice=null, array $extensions_tree=[])
 Renders a view. More...
 
 viewExists (string $view, string $viewtype= '', bool $recurse=true)
 Returns whether the specified view exists. More...
 
 extendView (string $view, string $view_extension, int $priority=501)
 Extends a view with another view. More...
 
 unextendView (string $view, string $view_extension)
 Unextends a view. More...
 
 registerCacheableView (string $view)
 Register a view a cacheable. More...
 
 isCacheableView (string $view)
 Is the view cacheable. More...
 
 registerPluginViews (string $path)
 Register a plugin's views. More...
 
 mergeViewsSpec (array $spec)
 Merge a specification of absolute view paths. More...
 
 listViews (string $viewtype= 'default')
 List all views in a viewtype. More...
 
 getInspectorData ()
 Get inspector data. More...
 
 configureFromCache (SystemCache $cache)
 Configure locations from the cache. More...
 
 cacheConfiguration (SystemCache $cache)
 Cache the configuration. More...
 

Static Public Member Functions

static canonicalizeViewName (string $alias)
 Takes a view name and returns the canonical name for that view. More...
 

Public Attributes

const VIEW_HOOK = 'view'
 
const VIEW_VARS_HOOK = 'view_vars'
 
const OUTPUT_KEY = '__view_output'
 
const BASE_VIEW_PRIORITY = 500
 

Protected Member Functions

 fileExists (string $path)
 Wrapper for file_exists() that caches false results (the stat cache only caches true results). More...
 

Protected Attributes

 $file_exists_cache = []
 

Detailed Description

Views service.

Definition at line 18 of file ViewsService.php.

Constructor & Destructor Documentation

Elgg\ViewsService::__construct ( EventsService  $events,
HttpRequest  $request 
)

Constructor.

Parameters
EventsService$eventsEvents service
\Elgg\Http\Request$requestHttp Request

Definition at line 92 of file ViewsService.php.

Member Function Documentation

Elgg\ViewsService::autoregisterViews ( string  $view_base,
string  $folder,
string  $viewtype 
)

Auto-registers views from a location.

Parameters
string$view_baseOptional The base of the view name without the view type.
string$folderRequired The folder to begin looking in
string$viewtypeThe type of view we're looking at (default, rss, etc)
Returns
bool returns false if folder can't be read

Definition at line 211 of file ViewsService.php.

Elgg\ViewsService::cacheConfiguration ( SystemCache  $cache)

Cache the configuration.

Parameters
SystemCache$cacheThe system cache
Returns
void

Definition at line 799 of file ViewsService.php.

static Elgg\ViewsService::canonicalizeViewName ( string  $alias)
static

Takes a view name and returns the canonical name for that view.

Parameters
string$aliasThe possibly non-canonical view name.
Returns
string The canonical view name.

Definition at line 180 of file ViewsService.php.

Elgg\ViewsService::configureFromCache ( SystemCache  $cache)

Configure locations from the cache.

Parameters
SystemCache$cacheThe system cache
Returns
bool

Definition at line 780 of file ViewsService.php.

Elgg\ViewsService::doesViewtypeFallback ( string  $viewtype)

Checks if a viewtype falls back to default.

Parameters
string$viewtypeViewtype
Returns
bool

Definition at line 323 of file ViewsService.php.

Elgg\ViewsService::extendView ( string  $view,
string  $view_extension,
int  $priority = 501 
)

Extends a view with another view.

Parameters
string$viewThe view to extend.
string$view_extensionThis view is added to $view
int$priorityThe priority, from 0 to 1000, to add at (lowest numbers displayed first)
Returns
void
See also
elgg_extend_view()

Definition at line 562 of file ViewsService.php.

Elgg\ViewsService::fileExists ( string  $path)
protected

Wrapper for file_exists() that caches false results (the stat cache only caches true results).

This saves us from many unneeded file stat calls when a common view uses a fallback.

Parameters
string$pathPath to the file
Returns
bool

Definition at line 458 of file ViewsService.php.

Elgg\ViewsService::findViewFile ( string  $view,
string  $viewtype 
)

Find the view file.

Parameters
string$viewView name
string$viewtypeViewtype
Returns
string Empty string if not found

Definition at line 262 of file ViewsService.php.

Elgg\ViewsService::getInspectorData ( )

Get inspector data.

Returns
array

Definition at line 755 of file ViewsService.php.

Elgg\ViewsService::getViewList ( string  $view)

Get the views, including extensions, used to render a view.

Keys returned are view priorities. View existence is not checked.

Parameters
string$viewView name
Returns
string[]

Definition at line 359 of file ViewsService.php.

Elgg\ViewsService::getViewtype ( )

Get the viewtype.

Returns
string

Definition at line 125 of file ViewsService.php.

Elgg\ViewsService::isCacheableView ( string  $view)

Is the view cacheable.

Parameters
string$viewthe view name
Returns
bool

Definition at line 635 of file ViewsService.php.

Elgg\ViewsService::isValidViewtype ( string  $viewtype)

Checks if $viewtype is a string suitable for use as a viewtype name.

Parameters
string$viewtypePotential viewtype name. Alphanumeric chars plus _ allowed.
Returns
bool

Definition at line 161 of file ViewsService.php.

Elgg\ViewsService::listViews ( string  $viewtype = 'default')

List all views in a viewtype.

Parameters
string$viewtypeViewtype
Returns
string[]

Definition at line 742 of file ViewsService.php.

Elgg\ViewsService::mergeViewsSpec ( array  $spec)

Merge a specification of absolute view paths.

Parameters
array$specSpecification viewtype => [ view_name => path or array of paths ]
Returns
void

Definition at line 711 of file ViewsService.php.

Elgg\ViewsService::registerCacheableView ( string  $view)

Register a view a cacheable.

Parameters
string$viewthe view name
Returns
void

Definition at line 622 of file ViewsService.php.

Elgg\ViewsService::registerPluginViews ( string  $path)

Register a plugin's views.

Parameters
string$pathBase path of the plugin
Returns
bool

Definition at line 671 of file ViewsService.php.

Elgg\ViewsService::registerViewtypeFallback ( string  $viewtype)

Register a viewtype to fall back to a default view if a view isn't found for that viewtype.

Parameters
string$viewtypeThe viewtype to register
Returns
void
See also
elgg_register_viewtype_fallback()

Definition at line 312 of file ViewsService.php.

Elgg\ViewsService::renderDeprecatedView ( string  $view,
array  $vars,
string  $suggestion,
string  $version 
)

Display a view with a deprecation notice.

No missing view NOTICE is logged

Parameters
string$viewThe name and location of the view to use
array$varsVariables to pass to the view
string$suggestionSuggestion with the deprecation message
string$versionHuman-readable release version: 1.7, 1.8, ...
Returns
string The parsed view
See also
elgg_view()

Definition at line 339 of file ViewsService.php.

Elgg\ViewsService::renderView ( string  $view,
array  $vars = [],
string  $viewtype = '',
bool  $issue_missing_notice = null,
array  $extensions_tree = [] 
)

Renders a view.

Parameters
string$viewName of the view
array$varsVariables to pass to the view
string$viewtypeViewtype to use
bool$issue_missing_noticeShould a missing notice be issued
array$extensions_treeArray of views that are before the current view in the extension path
Returns
string
See also
elgg_view()

Definition at line 376 of file ViewsService.php.

Elgg\ViewsService::setViewDir ( string  $view,
string  $location,
string  $viewtype = '' 
)

Set an alternative base location for a view.

Parameters
string$viewName of the view
string$locationFull path to the view file
string$viewtypeThe viewtype to register this under
Returns
void
See also
elgg_set_view_location()

Definition at line 286 of file ViewsService.php.

Elgg\ViewsService::setViewtype ( string  $viewtype = '')

Set the viewtype.

Parameters
string$viewtypeViewtype
Returns
bool

Definition at line 104 of file ViewsService.php.

Elgg\ViewsService::unextendView ( string  $view,
string  $view_extension 
)

Unextends a view.

Parameters
string$viewThe view that was extended.
string$view_extensionThis view that was added to $view
Returns
bool
See also
elgg_unextend_view()

Definition at line 594 of file ViewsService.php.

Elgg\ViewsService::viewExists ( string  $view,
string  $viewtype = '',
bool  $recurse = true 
)

Returns whether the specified view exists.

Parameters
string$viewThe view name
string$viewtypeIf set, forces the viewtype
bool$recurseIf false, do not check extensions
Returns
bool
See also
elgg_view_exists()

Definition at line 514 of file ViewsService.php.

Member Data Documentation

Elgg\ViewsService::$file_exists_cache = []
protected

Definition at line 31 of file ViewsService.php.

const Elgg\ViewsService::BASE_VIEW_PRIORITY = 500

Definition at line 25 of file ViewsService.php.

const Elgg\ViewsService::OUTPUT_KEY = '__view_output'

Definition at line 24 of file ViewsService.php.

const Elgg\ViewsService::VIEW_HOOK = 'view'

Definition at line 22 of file ViewsService.php.

const Elgg\ViewsService::VIEW_VARS_HOOK = 'view_vars'

Definition at line 23 of file ViewsService.php.


The documentation for this class was generated from the following file: