base\DynamicModel attributes()

attributes() public method Returns the list of attribute names. By default, this method returns all public non-static properties of the class. You may override this method to change the default behavior. public array attributes ( )return array List of attribute names.

authclient\QQ defaultTitle()

defaultTitle() protected method Generates service title. protected string defaultTitle ( )return string Service title.

web\Request getIsHead()

getIsHead() public method Returns whether this is a HEAD request. public boolean getIsHead ( )return boolean Whether this is a HEAD request.

base\Action runWithParams()

runWithParams() public method Runs this action with the specified parameters. This method is mainly invoked by the controller. public mixed runWithParams ( $params )$params array The parameters to be bound to the action's run() method. return mixed The result of the action throws yii\base\InvalidConfigException if the action class does not have a run() method

base\Action __construct()

__construct() public method Constructor. public void __construct ( $id, $controller, $config = [] )$id string The ID of this action $controller yii\base\Controller The controller that owns this action $config array Name-value pairs that will be used to initialize the object properties

base\Action $uniqueId

$uniqueId public read-only property The unique ID of this action among the whole application. public string getUniqueId ( )

mongodb\rbac\MongoDbManager getRule()

getRule() public method Returns the rule of the specified name. public null|yii\rbac\Rule getRule ( $name )$name string The rule name return null|yii\rbac\Rule The rule object, or null if the specified name does not correspond to a rule.

base\ActionEvent $isValid

$isValid public property Whether to continue running the action. Event handlers of yii\base\Controller::EVENT_BEFORE_ACTION may set this property to decide whether to continue running the current action. public boolean $isValid = true

base\ActionFilter isActive()

isActive() protected method Returns a value indicating whether the filter is active for the given action. protected boolean isActive ( $action )$action yii\base\Action The action being filtered return boolean Whether the filter is active for the given action.

base\ActionFilter attach()

attach() public method Attaches the behavior object to the component. The default implementation will set the $owner property and attach event handlers as declared in events(). Make sure you call the parent implementation if you override this method. public void attach ( $owner )$owner yii\base\Component The component that this behavior is to be attached to.