base\Arrayable fields()

fields() public abstract method Returns the list of fields that should be returned by default by toArray() when no specific fields are specified. A field is a named element in the returned array by toArray(). This method should return an array of field names or field definitions. If the former, the field name will be treated as an object property name whose value will be used as the field value. If the latter, the array key should be the field name while the array value should be the corres

web\AssetManager getBundle()

getBundle() public method Returns the named asset bundle. This method will first look for the bundle in $bundles. If not found, it will treat $name as the class of the asset bundle and create a new instance of it. public yii\web\AssetBundle getBundle ( $name, $publish = true )$name string The class name of the asset bundle (without the leading backslash) $publish boolean Whether to publish the asset files in the asset bundle before it is returned. If you set this false, you must manual

db\cubrid\ColumnSchemaBuilder buildAfterString()

buildAfterString() protected method Builds the after constraint for the column. Defaults to unsupported. protected string buildAfterString ( )return string A string containing the AFTER constraint.

web\UrlManager setScriptUrl()

setScriptUrl() public method Sets the entry script URL that is used by createUrl() to prepend to created URLs. This is mainly used when $enablePrettyUrl is false or $showScriptName is true. public void setScriptUrl ( $value )$value string The entry script URL that is used by createUrl() to prepend to created URLs.

helpers\BaseHtml cssStyleToArray()

cssStyleToArray() public static method Converts a CSS style string into an array representation. The array keys are the CSS property names, and the array values are the corresponding CSS property values. For example, print_r(Html::cssStyleToArray('width: 100px; height: 200px;')); // will display: ['width' => '100px', 'height' => '200px'] public static array cssStyleToArray ( $style )$style string The CSS style string return array The array representation of the CSS style

authclient\widgets\AuthChoice $options

$options public property The HTML attributes that should be rendered in the div HTML tag representing the container element. See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = ['class' => 'auth-clients']

mongodb\Database selectFileCollection()

selectFileCollection() protected method Selects GridFS collection with given prefix. protected yii\mongodb\file\Collection selectFileCollection ( $prefix )$prefix string File collection prefix. return yii\mongodb\file\Collection File collection instance.

web\UrlNormalizer normalizeRoute()

normalizeRoute() public method Performs normalization action for the specified $route. public array normalizeRoute ( $route )$route array Route for normalization return array Normalized route throws yii\base\InvalidConfigException if invalid normalization action is used. throws yii\web\UrlNormalizerRedirectException if normalization requires redirection. throws yii\web\NotFoundHttpException if normalization suggests action matching route does not exist.

mail\MessageInterface getSubject()

getSubject() public abstract method Returns the message subject. public abstract string getSubject ( )return string The message subject

web\Request $contentType

$contentType public read-only property Request content-type. Null is returned if this information is not available. public string getContentType ( )