console\Markdown renderCode()

renderCode() protected method Renders a code block protected string renderCode ( $block )$block array

web\UrlRule $verb

$verb public property The HTTP verb (e.g. GET, POST, DELETE) that this rule should match. Use array to represent multiple verbs that this rule may match. If this property is not set, the rule can match any verb. Note that this property is only used when parsing a request. It is ignored for URL creation. public string|array $verb = null

helpers\BaseInflector variablize()

variablize() public static method Same as camelize but first char is in lowercase. Converts a word like "send_email" to "sendEmail". It will remove non alphanumeric character from the word, so "who's online" will be converted to "whoSOnline" public static string variablize ( $word )$word string To lowerCamelCase

web\AssetBundle publish()

publish() public method Publishes the asset bundle if its source code is not under Web-accessible directory. It will also try to convert non-CSS or JS files (e.g. LESS, Sass) into the corresponding CSS or JS files using asset converter. public void publish ( $am )$am yii\web\AssetManager The asset manager to perform the asset publishing

mongodb\Collection find()

find() public method Returns a cursor for the search results. In order to perform "find" queries use yii\mongodb\Query class. See also yii\mongodb\Query. public \MongoDB\Driver\Cursor find ( $condition = [], $fields = [], $options = [] )$condition array Query condition $fields array Fields to be selected $options array Query options (available since 2.1). return \MongoDB\Driver\Cursor Cursor for the search results

gii\generators\module\Generator getDescription()

getDescription() public method public string getDescription ( )return string The detailed description of the generator.

i18n\GettextMoFile save()

save() public method Saves messages to an MO file. public void save ( $filePath, $messages )$filePath string File path $messages array Message translations. Array keys are source messages and array values are translated messages: source message => translated message. Note if the message has a context, the message ID must be prefixed with the context with chr(4) as the separator. throws yii\base\Exception if unable to save the MO file

widgets\ActiveForm $validateOnChange

$validateOnChange public property Whether to perform validation when the value of an input field is changed. If yii\widgets\ActiveField::$validateOnChange is set, its value will take precedence for that input field. public boolean $validateOnChange = true

mongodb\Connection initConnection()

initConnection() protected method Initializes the DB connection. This method is invoked right after the DB connection is established. The default implementation triggers an EVENT_AFTER_OPEN event. protected void initConnection ( )

swiftmailer\Mailer setTransport()

setTransport() public method public void setTransport ( $transport )$transport array|\Swift_Transport throws yii\base\InvalidConfigException on invalid argument.