Authentication

Configuring yii\web\User Implementing yii\web\IdentityInterface Using yii\web\User Authentication Events Authentication is the process of verifying the identity of a user. It usually uses an identifier (e.g. a username or an email address) and a secret token (e.g. a password or an access token) to judge if the user is the one whom he claims as. Authentication is the basis of the login feature. Yii provides an authentication framework which wires up various components to support login. To use t

sphinx\gii\model\Generator $description

$description public read-only property The detailed description of the generator. public string getDescription ( )

base\Module EVENT_BEFORE_ACTION

EVENT_BEFORE_ACTION event of type yii\base\ActionEvent An event raised before executing a controller action. You may set yii\base\ActionEvent::$isValid to be false to cancel the action execution.

bootstrap\Button init()

init() public method Initializes the widget. If you override this method, make sure you call the parent implementation first. public void init ( )

data\Sort hasAttribute()

hasAttribute() public method Returns a value indicating whether the sort definition supports sorting by the named attribute. public boolean hasAttribute ( $name )$name string The attribute name return boolean Whether the sort definition supports sorting by the named attribute.

console\Application $response

$response public read-only property The response component. public yii\console\Response getResponse ( )

filters\auth\CompositeAuth authenticate()

authenticate() public method Authenticates the current user. public yii\web\IdentityInterface authenticate ( $user, $request, $response )$user yii\web\User $request yii\web\Request $response yii\web\Response return yii\web\IdentityInterface The authenticated user identity. If authentication information is not provided, null will be returned. throws yii\web\UnauthorizedHttpException if authentication information is provided but is invalid.

web\Request $isPatch

$isPatch public read-only property Whether this is a PATCH request. public boolean getIsPatch ( )

gii\generators\extension\Generator $outputPath

$outputPath public read-only property public boolean getOutputPath ( )

db\ActiveQuery innerJoinWith()

innerJoinWith() public method Inner joins with the specified relations. This is a shortcut method to joinWith() with the join type set as "INNER JOIN". Please refer to joinWith() for detailed usage of this method. See also joinWith(). public $this innerJoinWith ( $with, $eagerLoading = true )$with string|array The relations to be joined with. $eagerLoading boolean|array Whether to eager loading the relations. return $this The query object itself