helpers\BaseUrl remember()

remember() public static method Remembers the specified URL so that it can be later fetched back by previous(). See also previous(). public static void remember ( $url = '', $name = null )$url string|array The URL to remember. Please refer to to() for acceptable formats. If this parameter is not specified, the currently requested URL will be used. $name string The name associated with the URL to be remembered. This can be used later by previous(). If not set, it will use yii\web\User

helpers\BaseHtmlPurifier configure()

configure() protected static method (available since version 2.0.3) Allow the extended HtmlPurifier class to set some default config options. protected static void configure ( $config )$config \HTMLPurifier_Config

elasticsearch\DebugPanel save()

save() public method Saves data to be later used in debugger detail view. This method is called on every page where debugger is enabled. public mixed save ( )return mixed Data to be saved

caching\MemCacheServer $host

$host public property Memcache server hostname or IP address public string $host = null

bootstrap\Modal renderToggleButton()

renderToggleButton() protected method Renders the toggle button. protected string renderToggleButton ( )return string The rendering result

db\ActiveRecord transactions()

transactions() public method Declares which DB operations should be performed within a transaction in different scenarios. The supported DB operations are: OP_INSERT, OP_UPDATE and OP_DELETE, which correspond to the insert(), update() and delete() methods, respectively. By default, these methods are NOT enclosed in a DB transaction. In some scenarios, to ensure data consistency, you may want to enclose some or all of them in transactions. You can do so by overriding this method and returnin

db\ActiveRecord findBySql()

findBySql() public static method Creates an yii\db\ActiveQuery instance with a given SQL statement. Note that because the SQL statement is already specified, calling additional query modification methods (such as where(), order()) on the created yii\db\ActiveQuery instance will have no effect. However, calling with(), asArray() or indexBy() is still fine. Below is an example: $customers = Customer::findBySql('SELECT * FROM customer')->all(); public static yii\db\ActiveQuery findBySql

authclient\OAuthToken $tokenSecret

$tokenSecret public property Token secret. public string getTokenSecret ( )public void setTokenSecret ( $tokenSecret )

test\BaseActiveFixture $dataFile

$dataFile public property The file path or path alias of the data file that contains the fixture data to be returned by getData(). You can set this property to be false to prevent loading any data. public string|boolean $dataFile = null

validators\ExistValidator 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 ( )