sphinx\ActiveDataProvider prepareTotalCount()

prepareTotalCount() protected method Returns a value indicating the total number of data models in this data provider. protected integer prepareTotalCount ( )return integer Total number of data models in this data provider.

filters\AccessControl beforeAction()

beforeAction() public method This method is invoked right before an action is to be executed (after all possible filters.) You may override this method to do last-minute preparation for the action. public boolean beforeAction ( $action )$action yii\base\Action The action to be executed. return boolean Whether the action should continue to be executed.

bootstrap\Tabs $navType

$navType public property Specifies the Bootstrap tab styling. public string $navType = 'nav-tabs'

elasticsearch\Command update()

update() public method Updates a document See also http://www.elastic.co/guide/en/elasticsearch/reference/current/docs-update.html. public mixed update ( $index, $type, $id, $data, $options = [] )$index $type $id $data $options array

mongodb\gii\model\Generator stickyAttributes()

stickyAttributes() public method Returns the list of sticky attributes. A sticky attribute will remember its value and will initialize the attribute with this value when the generator is restarted. public array stickyAttributes ( )return array List of sticky attributes

base\Object hasMethod()

hasMethod() public method Returns a value indicating whether a method is defined. The default implementation is a call to php function method_exists(). You may override this method when you implemented the php magic method __call(). public boolean hasMethod ( $name )$name string The method name return boolean Whether the method is defined

rbac\BaseManager addItem()

addItem() protected abstract method Adds an auth item to the RBAC system. protected abstract boolean addItem ( $item )$item yii\rbac\Item The item to add return boolean Whether the auth item is successfully added to the system throws Exception if data validation or saving fails (such as the name of the role or permission is not unique)

helpers\BaseConsole startProgress()

startProgress() public static method Starts display of a progress bar on screen. This bar will be updated by updateProgress() and my be ended by endProgress(). The following example shows a simple usage of a progress bar: Console::startProgress(0, 1000); for ($n = 1; $n <= 1000; $n++) { usleep(1000); Console::updateProgress($n, 1000); } Console::endProgress(); Git clone like progress (showing only status information): `php Console::startProgress(0, 1000, 'Counting objects: ', fa

i18n\MissingTranslationEvent $translatedMessage

$translatedMessage public property The translated message. An event handler may overwrite this property with a translated version of $message if possible. If not set (null), it means the message is not translated. public string $translatedMessage = null

db\Command requireTableSchemaRefresh()

requireTableSchemaRefresh() protected method (available since version 2.0.6) Marks a specified table schema to be refreshed after command execution. protected $this requireTableSchemaRefresh ( $name )$name string Name of the table, which schema should be refreshed. return $this This command instance