Resources

Resources component

 class Cms\Components\Resources
extends Cms\Classes\ComponentBase

Traits

Trait Description
AssetMaker

Asset Maker Trait Adds asset based methods to a class

EventEmitter

Adds system event related features to any class.

ExtendableTrait

This extension trait is used when access to the underlying base class is not available, such as classes that belong to the foundation framework (Laravel). It is currently used by the Controller and Model classes.

PropertyContainer

Property container trait

Properties

public $cssDir : string

The default CSS directory

public $jsDir : string

The default JavaScript directory

public $lessDir : string

The default LESS directory

public $sassDir : string

The default SASS directory

public $alias : string

Inherited from ComponentBase

Alias used for this component.

public $assetPath : string

Inherited from ComponentBase

Specifies a path to the asset directory.

public $componentCssClass : string

Inherited from ComponentBase

Component CSS class name for the back-end page/layout component list. This field is used by the CMS internally.

public $id : string

Inherited from ComponentBase

A unique identifier for this component.

public $implement : string | array | null

Inherited from ComponentBase

Extensions implemented by this class.

public $inspectorEnabled : bool

Inherited from ComponentBase

Determines whether Inspector can be used with the component. This field is used by the CMS internally.

public $isHidden : bool

Inherited from ComponentBase

Determines whether the component is hidden from the back-end UI.

public $name : string

Inherited from ComponentBase

Component class name or class alias used in the component declaration in a template.

public $pluginIcon : string

Inherited from ComponentBase

Icon of the plugin that defines the component. This field is used by the CMS internally.

protected $assets : array

Inherited from ComponentBase

Collection of assets to display in the layout.

protected $controller : Cms\Classes\Controller

Inherited from ComponentBase

Controller object.

protected $dirName : string

Inherited from ComponentBase

Specifies the component directory name.

protected static $extendableCallbacks : array

Inherited from ComponentBase

Used to extend the constructor of an extendable class. Eg:

Class::extend(function($obj) { })

protected static $extendableClassLoader : ClassLoader | null

Inherited from ComponentBase

Class loader instance.

protected static $extendableGuardProperties : bool

Inherited from ComponentBase

Indicates if dynamic properties can be created.

protected static $extendableStaticMethods : array

Inherited from ComponentBase

Collection of static methods used by behaviors.

protected $extensionData : array

Inherited from ComponentBase

Class reflection information, including behaviors.

protected $externalPropertyNames : array

Inherited from ComponentBase

A collection of external property names used by this component.

protected $page : Cms\Classes\PageCode

Inherited from ComponentBase

Page object object.

protected $properties : array

Inherited from ComponentBase

Contains the object property values.

Methods

public componentDetails () : array

Returns
array

public defineProperties () : array

Returns
array

public init ()

Returns
mixed

public onRun ()

Returns
mixed

protected guessAssetDirectory (array $possible, $default = null)

Parameters
Property Description
$possible
array
$default
mixed
Returns
mixed

protected guessAssetPath ()

Returns
mixed

protected prefixCss ($value)

Parameters
Property Description
$value
mixed
Returns
mixed

protected prefixJs ($value)

Parameters
Property Description
$value
mixed
Returns
mixed

protected prefixLess ($value)

Parameters
Property Description
$value
mixed
Returns
mixed

protected prefixSass ($value)

Parameters
Property Description
$value
mixed
Returns
mixed

public __call (string $method, array $parameters) : mixed

Inherited from ComponentBase

Dynamically handle calls into the controller instance.

Parameters
Property Description
$method
string
$parameters
array
Returns
mixed

public static __callStatic ($name, $params)

Inherited from ComponentBase
Parameters
Property Description
$name
mixed
$params
mixed
Returns
mixed

public __construct (null | CodeBase $cmsObject = null, array $properties = [])

Inherited from ComponentBase

Component constructor. Takes in the page or layout code section object and properties set by the page or layout.

Parameters
Property Description
$cmsObject
null | CodeBase
$properties
array
Returns
mixed

public __get ($name)

Inherited from ComponentBase
Parameters
Property Description
$name
mixed
Returns
mixed

public __set ($name, $value)

Inherited from ComponentBase
Parameters
Property Description
$name
mixed
$value
mixed
Returns
mixed

public __toString ()

Inherited from ComponentBase

Returns the component's alias, used by SELF

Returns
mixed

public addCss (array | string $name, array $attributes = []) : void

Inherited from ComponentBase

Adds StyleSheet asset to the asset list. Call $this->makeAssets() in a view to output corresponding markup.

Parameters
Property Description
$name
array | string

Specifies a path (URL) or an array of paths to the stylesheet(s).

$attributes
array

Adds extra HTML attributes to the asset link.

Returns
void

public addDynamicMethod (string $dynamicName, callable $method, string $extension = null)

Inherited from ComponentBase

Programmatically adds a method to the extendable class

Parameters
Property Description
$dynamicName
string
$method
callable
$extension
string
Returns
mixed

public addDynamicProperty (string $dynamicName, mixed $value = null) : void

Inherited from ComponentBase

Programmatically adds a property to the extendable class

Parameters
Property Description
$dynamicName
string

The name of the property to add

$value
mixed

The value of the property

Returns
void

public addJs (array | string $name, array $attributes = []) : void

Inherited from ComponentBase

Adds JavaScript asset to the asset list. Call $this->makeAssets() in a view to output corresponding markup.

Parameters
Property Description
$name
array | string

Specifies a path (URL) or an array of paths to the script(s).

$attributes
array

Adds extra HTML attributes to the asset link.

Returns
void

public addRss (string $name, array $attributes = []) : void

Inherited from ComponentBase

Adds an RSS link asset to the asset list. Call $this->makeAssets() in a view to output corresponding markup.

Parameters
Property Description
$name
string

Specifies a path (URL) to the RSS channel

$attributes
array

Adds extra HTML attributes to the asset link.

Returns
void

public asExtension (string $shortName) : mixed

Inherited from ComponentBase

Short hand for getClassExtension() method, except takes the short extension name, example:

$this->asExtension('FormController')

Parameters
Property Description
$shortName
string
Returns
mixed

public static clearExtendedClasses () : void

Inherited from ComponentBase

Clear the list of extended classes so they will be re-extended.

Returns
void

public combineAssets (array $assets, string $localPath = "") : string

Inherited from ComponentBase

Run the provided assets through the Asset Combiner

Parameters
Property Description
$assets
array

Collection of assets

$localPath
string

Prefix all assets with this path (optional)

Returns
string

public extendClassWith (string $extensionName) : void

Inherited from ComponentBase

Dynamically extend a class with a specified behavior

Parameters
Property Description
$extensionName
string
Returns
void

public static extendableAddExtension (callable $callback, boolean $scoped = false, $outerScope = null) : void

Inherited from ComponentBase

Extends the class using a closure.

The closure will be provided a single parameter which is the instance of the extended class, by default.

You may optionally specify the callback as a scoped callback, which inherits the scope of the extended class and provides access to protected and private methods and properties. This makes any call using $this act on the extended class, not the class providing the extension.

If you use a scoped callback, you can provide the "outer" scope - or the scope of the class providing the extension, with the third parameter. The outer scope object will then be passed as the single parameter to the closure.

Parameters
Property Description
$callback
callable
$scoped
boolean
$outerScope
mixed
Returns
void

public extendableCall (string $name, array $params = null) : mixed

Inherited from ComponentBase

Magic method for __call().

Callback priority is as follows:

  • "Dynamic Methods" added locally to the object via addDynamicMethod($name, $callable)
  • Methods available on Behaviors that have been implemented by the object
  • Pass it to the parent's __call() method if it defines one
Parameters
Property Description
$name
string
$params
array
Returns
mixed

public static extendableCallStatic (string $name, array $params = null) : mixed

Inherited from ComponentBase

Magic method for __callStatic()

Parameters
Property Description
$name
string
$params
array
Returns
mixed

public extendableConstruct ()

Inherited from ComponentBase

This method should be called as part of the constructor.

Returns
mixed

public static extendableExtendCallback (callable $callback, boolean $scoped = false, $outerScope = null) : void

Inherited from ComponentBase

Helper method for ::extend() static method.

Parameters
Property Description
$callback
callable
$scoped
boolean
$outerScope
mixed
Returns
void

public extendableGet (string $name) : mixed | null

Inherited from ComponentBase

Magic method for __get()

Parameters
Property Description
$name
string
Returns
mixed | null

public extendableSet (string $name, mixed $value) : void

Inherited from ComponentBase

Magic method for __set()

Parameters
Property Description
$name
string
$value
mixed
Returns
void

public fireSystemEvent (string $event, array $params = [], boolean $halt = true) : mixed

Inherited from ComponentBase

Fires a combination of local and global events. The first segment is removed from the event name locally and the local object is passed as the first argument to the event globally. Halting is also enabled by default.

For example:

$this->fireSystemEvent('backend.list.myEvent', ['my value']);

Is equivalent to:

$this->fireEvent('list.myEvent', ['myvalue'], true);

Event::fire('backend.list.myEvent', [$this, 'myvalue'], true);
Parameters
Property Description
$event
string

Event name

$params
array

Event parameters

$halt
boolean

Halt after first non-null result

Returns
mixed

public fireViewEvent (string $event, array $params = []) : string

Inherited from ComponentBase

Special event function used for extending within view files, allowing HTML to be injected multiple times.

For example:

= $this->fireViewEvent('backend.auth.extendSigninView') ?>
Parameters
Property Description
$event
string

Event name

$params
array

Event parameters

Returns
string

public flushAssets () : void

Inherited from ComponentBase

Disables the use, and subequent broadcast, of assets. This is useful to call during an AJAX request to speed things up. This method works by specifically targeting the hasAssetsDefined method.

Returns
void

public getAssetPath (string $fileName, string $assetPath = null) : string

Inherited from ComponentBase

Locates a file based on it's definition. If the file starts with a forward slash, it will be returned in context of the application public path, otherwise it will be returned in context of the asset path.

Parameters
Property Description
$fileName
string

File to load.

$assetPath
string

Explicitly define an asset path.

Returns
string

Relative path to the asset file.

public getAssetPaths () : array

Inherited from ComponentBase

Returns an array of all registered asset paths.

Returns
array

public getClassExtension (string $name) : mixed

Inherited from ComponentBase

Returns a behavior object from an extendable class, example:

$this->getClassExtension('Backend.Behaviors.FormController')

Parameters
Property Description
$name
string

Fully qualified behavior name

Returns
mixed

public getClassMethods () : array

Inherited from ComponentBase

Get a list of class methods, extension equivalent of get_class_methods()

Returns
array

public getDynamicProperties () : array

Inherited from ComponentBase

Returns all dynamic properties and their values

Returns
array

['property' => 'value']

public getPath ()

Inherited from ComponentBase

Returns the absolute component path.

Returns
mixed

public getProperties () : array

Inherited from ComponentBase

Returns all properties.

Returns
array

public getPropertyOptions (string $property) : array

Inherited from ComponentBase

Returns options for multi-option properties (drop-downs, etc.)

Parameters
Property Description
$property
string

Specifies the property name

Returns
array

Return an array of option values and descriptions

public hasAssetsDefined () : bool

Inherited from ComponentBase

Returns true if assets any have been added.

Returns
bool

public isClassExtendedWith (string $name) : bool

Inherited from ComponentBase

Check if extendable class is extended with a behavior object

Parameters
Property Description
$name
string

Fully qualified behavior name

Returns
bool

public makeAssets ($type = null) : string | null

Inherited from ComponentBase

Outputs <link> and <script> tags to load assets previously added with addJs, addCss, & addRss method calls depending on the provided $type

Parameters
Property Description
$type
mixed
Returns
string | null

public methodExists (string $name) : bool

Inherited from ComponentBase

Checks if a method exists, extension equivalent of method_exists()

Parameters
Property Description
$name
string
Returns
bool

public onRender ()

Inherited from ComponentBase

Executed when this component is rendered on a page or layout.

Returns
mixed

public paramName (string $name, mixed $default = null) : string

Inherited from ComponentBase

Returns the external property name when the property value is a routing parameter reference.

Otherwise the default value specified is returned.

Parameters
Property Description
$name
string

The property name

$default
mixed
Returns
string

public property (string $name, string $default = null) : mixed

Inherited from ComponentBase

Returns a defined property value or default if one is not set.

Parameters
Property Description
$name
string

The property name to look for.

$default
string

A default value to return if no name is found.

Returns
mixed

The property value or the default specified.

public propertyExists (string $name) : bool

Inherited from ComponentBase

Checks if a property exists, extension equivalent of property_exists()

Parameters
Property Description
$name
string
Returns
bool

public propertyName (string $name, mixed $default = null) : string

Inherited from ComponentBase

Returns the external property name when the property value is an external property reference.

Otherwise the default value specified is returned.

Parameters
Property Description
$name
string

The property name

$default
mixed
Returns
string

public renderPartial ()

Inherited from ComponentBase

Renders a requested partial in context of this component, see Cms\Classes\Controller@renderPartial for usage.

Returns
mixed

public runAjaxHandler ($handler) : bool

Inherited from ComponentBase

Executes the event cycle when running an AJAX handler.

Parameters
Property Description
$handler
mixed
Returns
bool

Returns true if the handler was found. Returns false otherwise.

public setExternalPropertyName (string $name, string $extName) : string

Inherited from ComponentBase

Sets an external property name.

Parameters
Property Description
$name
string

Property name

$extName
string

External property name

Returns
string

public setExternalPropertyNames (array $names) : void

Inherited from ComponentBase

Sets names used by external properties.

Parameters
Property Description
$names
array

The key should be the property name, the value should be the external property name.

Returns
void

public setProperties (array $properties) : void

Inherited from ComponentBase

Sets multiple properties.

Parameters
Property Description
$properties
array
Returns
void

public setProperty (string $name, mixed $value) : void

Inherited from ComponentBase

Sets a property value

Parameters
Property Description
$name
string
$value
mixed
Returns
void

public validateProperties (array $properties) : array

Inherited from ComponentBase

Validates the properties against the defined properties of the class.

This method also sets default properties.

Parameters
Property Description
$properties
array

The supplied property values.

Returns
array

The validated property set, with defaults applied.

protected addAsset (string $type, string $path, array $attributes)

Inherited from ComponentBase

Adds the provided asset to the internal asset collections

Parameters
Property Description
$type
string

The type of the asset: 'js' || 'css' || 'rss'

$path
string

The path to the asset

$attributes
array

The attributes for the asset

Returns
mixed

protected extendableAddLocalExtension (Closure $callback, $outerScope = null)

Inherited from ComponentBase

Adds local extensibility to the current instance.

This rebinds a given closure to the current instance, making it able to access protected and private methods. This makes any call using $this within the closure act on the extended class, not the class providing the extension.

An outer scope may be provided by providing a second parameter, which will then be passed through to the closure as its first parameter. If this is not given, the current instance will be provided as the first parameter.

Parameters
Property Description
$callback
Closure
$outerScope
mixed
Returns
mixed

protected extendableIsAccessible (mixed $class, string $propertyName) : bool

Inherited from ComponentBase

Checks if a property is accessible, property equivalent of is_callable()

Parameters
Property Description
$class
mixed
$propertyName
string
Returns
bool

protected extensionExtractMethods (string $extensionName, object $extensionObject) : void

Inherited from ComponentBase

Extracts the available methods from a behavior and adds it to the list of callable methods.

Parameters
Property Description
$extensionName
string
$extensionObject
object
Returns
void

protected extensionGetClassLoader () : Winter\Storm\Support\ClassLoader | null

Inherited from ComponentBase

Gets the class loader

Returns
Winter\Storm\Support\ClassLoader | null

protected extensionNormalizeClassName (string $name) : string

Inherited from ComponentBase

Normalizes the provided extension name allowing for the ClassLoader to inject aliased classes

Parameters
Property Description
$name
string
Returns
string

protected getAssetEntryBuildPath (array $asset) : string

Inherited from ComponentBase

Internal helper, attaches a build code to an asset path

Parameters
Property Description
$asset
array

Stored asset array

Returns
string

protected getAssetScheme (string $asset) : string

Inherited from ComponentBase

Internal helper, get asset scheme

Parameters
Property Description
$asset
string

Specifies a path (URL) to the asset.

Returns
string

protected getLocalPath (string | null $relativePath)

Inherited from ComponentBase
Parameters
Property Description
$relativePath
string | null
Returns
mixed

protected removeDuplicates () : void

Inherited from ComponentBase

Removes duplicate assets from the entire collection.

Returns
void
Copyright © 2024 Winter CMS