authclient\WeChat buildAuthUrl()

buildAuthUrl() public method Composes user authorization URL. public string buildAuthUrl ( array $params = [] )$params array Additional auth GET params. return string Authorization URL.

authclient\BaseOAuth mergeCurlOptions()

mergeCurlOptions() protected method Merge CUrl options. If each options array has an element with the same key value, the latter will overwrite the former. protected array mergeCurlOptions ( $options1, $options2 )$options1 array Options to be merged to. $options2 array Options to be merged from. You can specify additional arrays via third argument, fourth argument etc. return array Merged options (the original options are not changed.)

widgets\Pjax $options

$options public property The HTML attributes for the widget container tag. The following special options are recognized: tag: string, the tag name for the container. Defaults to div This option is available since version 2.0.7. See also yii\helpers\Html::tag(). See also yii\helpers\Html::renderTagAttributes() for details on how attributes are being rendered. public array $options = []

rest\UrlRule init()

init() public method Initializes the object. This method is invoked at the end of the constructor after the object is initialized with the given configuration. public void init ( )

test\BaseActiveFixture getData()

getData() protected method Returns the fixture data. The default implementation will try to return the fixture data by including the external file specified by $dataFile. The file should return the data array that will be stored in $data after inserting into the database. protected array getData ( )return array The data to be put into the database throws yii\base\InvalidConfigException if the specified data file does not exist.

base\NotSupportedException getName()

getName() public method public string getName ( )return string The user-friendly name of this exception

swiftmailer\Message setCc()

setCc() public method Sets the Cc (additional copy receiver) addresses of this message. public $this setCc ( $cc )$cc string|array Copy receiver email address. You may pass an array of addresses if multiple recipients should receive this message. You may also specify receiver name in addition to email address using format: [email => name]. return $this Self reference.

db\sqlite\Schema loadColumnSchema()

loadColumnSchema() protected method Loads the column information into a yii\db\ColumnSchema object. protected yii\db\ColumnSchema loadColumnSchema ( $info )$info array Column information return yii\db\ColumnSchema The column schema object

sphinx\ActiveDataProvider getFacet()

getFacet() public method Returns results of the specified facet. public array getFacet ( $name )$name string Facet name return array Facet results. throws yii\base\InvalidCallException if requested facet does not present in results.

data\Pagination setPage()

setPage() public method Sets the current page number. public void setPage ( $value, $validatePage = false )$value integer The zero-based index of the current page. $validatePage boolean Whether to validate the page number. Note that in order to validate the page number, both $validatePage and this parameter must be true.