Class CClientScript
CClientScript manages JavaScript and CSS stylesheets for views.
- CComponent
-
CApplicationComponent implements IApplicationComponent
-
CClientScript
Copyright: 2008-2013 Yii Software LLC
License: http://www.yiiframework.com/license/
Author: Qiang Xue <qiang.xue@gmail.com>
Since: 1.0
Located at x2engine/framework/web/CClientScript.php
public
|
|
public
|
#
render( string & $output )
Renders the registered scripts. This method is called in |
protected
|
|
protected
|
|
protected
string
|
#
renderScriptBatch( array $scripts )
Composes script HTML block from the given script values, attempting to group scripts at single 'script' tag if possible. |
public
|
|
public
|
|
public
|
|
public
|
|
public
string
|
#
getCoreScriptUrl( )
Returns the base URL of all core javascript files. If the base URL is not explicitly set, this method will publish the whole directory 'framework/web/js/source' and return the corresponding URL. |
public
|
#
setCoreScriptUrl( string $value )
Sets the base URL of all core javascript files. This setter is provided in case when core javascript files are manually published to a pre-specified location. This may save asset publishing time for large-scale applications. |
public
string
|
#
getPackageBaseUrl( string $name )
Returns the base URL for a registered package with the specified name. If needed, this method may publish the assets of the package and returns the published base URL. |
public
static
|
#
registerPackage( string $name )
Registers a script package that is listed in |
public
static
|
#
registerCoreScript( string $name )
Registers a script package that is listed in |
public
static
|
|
public
static
|
|
public
static
|
#
registerScriptFile( string $url, integer $position = null, array $htmlOptions = array() )
Registers a javascript file. |
public
static
|
#
registerScript( string $id, string $script, integer $position = null, array $htmlOptions = array() )
Registers a piece of javascript code. |
public
static
|
#
registerMetaTag( string $content, string $name = null, string $httpEquiv = null, array $options = array(), string $id = null )
Registers a meta tag that will be inserted in the head section (right before the title element) of the resulting page. |
public
static
|
#
registerLinkTag( string $relation = null, string $type = null, string $href = null, string $media = null, array $options = array() )
Registers a link tag that will be inserted in the head section (right before the title element) of the resulting page. |
public
boolean
|
|
public
boolean
|
|
public
boolean
|
#
isScriptFileRegistered( string $url, integer $position =
Checks whether the JavaScript file has been registered. |
public
boolean
|
#
isScriptRegistered( string $id, integer $position =
Checks whether the JavaScript code has been registered. |
protected
|
#
recordCachingAction( string $context, string $method, array $params )
Records a method call when an output cache is in effect. This is a shortcut to Yii::app()->controller->recordCachingAction. In case when controller is absent, nothing is recorded. |
public
static
|
getIsInitialized(),
init()
|
integer |
POS_HEAD
|
0 |
#
The script is rendered in the head section right before the title element. |
integer |
POS_BEGIN
|
1 |
#
The script is rendered at the beginning of the body section. |
integer |
POS_END
|
2 |
#
The script is rendered at the end of the body section. |
integer |
POS_LOAD
|
3 |
#
The script is rendered inside window onload function. |
integer |
POS_READY
|
4 |
#
The body script is rendered inside a jQuery ready function. |
public
boolean
|
$enableJavaScript | true |
#
whether JavaScript should be enabled. Defaults to true. |
public
array
|
$scriptMap | array() |
#
the mapping between script file names and the corresponding script URLs. The array keys are script file names (without directory part) and the array values are the corresponding URLs. If an array value is false, the corresponding script file will not be rendered. If an array key is '.js' or '.css', the corresponding URL will replace all JavaScript files or CSS files, respectively. This property is mainly used to optimize the generated HTML pages by merging different scripts files into fewer and optimized script files. |
public
array
|
$packages | array() |
#
list of custom script packages (name=>package spec). This property keeps a
list of named script packages, each of which can contain a set of CSS and/or
JavaScript script files, and their dependent package names. By calling The array structure is as follows: array( 'package-name'=>array( 'basePath'=>'alias of the directory containing the script files', 'baseUrl'=>'base URL for the script files', 'js'=>array(list of js files relative to basePath/baseUrl), 'css'=>array(list of css files relative to basePath/baseUrl), 'depends'=>array(list of dependent packages), ), ...... ) The JS and CSS files listed are relative to 'basePath'. For example, if 'basePath' is 'application.assets', a script named 'comments.js' will refer to the file 'protected/assets/comments.js'. When a script is being rendered in HTML, it will be prefixed with 'baseUrl'. For example, if 'baseUrl' is '/assets', the 'comments.js' script will be rendered using URL '/assets/comments.js'. If 'baseUrl' does not start with '/', the relative URL of the application entry script will be inserted at the beginning. For example, if 'baseUrl' is 'assets' and the current application runs with the URL 'http://localhost/demo/index.php', then the 'comments.js' script will be rendered using URL '/demo/assets/comments.js'. If 'baseUrl' is not set, the script will be published by When calling |
public
array
|
$corePackages |
|
#
list of core script packages (name=>package spec). Please refer to By default, the core script packages are specified in 'framework/web/js/packages.php'. You may configure this property to customize the core script packages. When calling |
public
array
|
$scripts | array() |
#
the registered JavaScript code blocks (position, key => code) |
protected
array
|
$cssFiles | array() |
#
the registered CSS files (CSS URL=>media type). |
protected
array
|
$scriptFiles | array() |
#
the registered JavaScript files (position, key => URL) |
protected
array
|
$metaTags | array() |
#
the registered head meta tags. Each array element represents an option array
that will be passed as the last parameter of |
protected
array
|
$linkTags | array() |
#
the registered head link tags. Each array element represents an option array
that will be passed as the last parameter of |
protected
array
|
$css | array() |
#
the registered css code blocks (key => array(CSS code, media type)). |
protected
boolean
|
$hasScripts | false |
#
whether there are any javascript or css to be rendered. |
protected
array
|
$coreScripts | array() |
#
the registered script packages (name => package spec) |
public
integer
|
$coreScriptPosition |
|
#
Where the scripts registered using |
public
integer
|
$defaultScriptFilePosition |
|
#
Where the scripts registered using |
public
integer
|
$defaultScriptPosition |
|
#
Where the scripts registered using |
$behaviors
|
public
string
|
$coreScriptUrl |
#
The base URL of all core javascript files. |
$isInitialized
|