debug\Module $allowedIPs

$allowedIPs public property The list of IPs that are allowed to access this module. Each array element represents a single IP filter which can be either an IP address or an address with wildcard (e.g. 192.168.0.*) to represent a network segment. The default value is ['127.0.0.1', '::1'], which means the module can only be accessed by localhost. public array $allowedIPs = ['127.0.0.1', '::1']

debug\Module $allowedHosts

$allowedHosts public property The list of hosts that are allowed to access this module. Each array element is a hostname that will be resolved to an IP address that is compared with the IP address of the user. A use case is to use a dynamic DNS (DDNS) to allow access. The default value is []. public array $allowedHosts = []

debug\models\search\Timeline search()

search() public method Returns data provider with filled models. Filter applied if needed. public yii\debug\components\TimelineDataProvider search ( $params, $panel )$params array $params an array of parameter values indexed by parameter names $panel \yii\debug\models\search\TimeLinePanel

debug\models\search\Timeline rules()

rules() public method Returns the validation rules for attributes. Validation rules are used by validate() to check if attribute values are valid. Child classes may override this method to declare different validation rules. Each rule is an array with the following structure: [ ['attribute1', 'attribute2'], 'validator type', 'on' => ['scenario1', 'scenario2'], //...other parameters... ] where attribute list: required, specifies the attributes array to be validated, for s

debug\models\search\Timeline attributeLabels()

attributeLabels() public method Returns the attribute labels. Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users. By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels. Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent

debug\models\search\Timeline $duration

$duration public property Attribute search public integer $duration = 0

debug\models\search\Timeline $category

$category public property Attribute search public string $category = null

debug\models\search\Profile search()

search() public method Returns data provider with filled models. Filter applied if needed. public yii\data\ArrayDataProvider search ( $params, $models )$params array An array of parameter values indexed by parameter names $models array Data to return provider for

debug\models\search\Profile rules()

rules() public method Returns the validation rules for attributes. Validation rules are used by validate() to check if attribute values are valid. Child classes may override this method to declare different validation rules. Each rule is an array with the following structure: [ ['attribute1', 'attribute2'], 'validator type', 'on' => ['scenario1', 'scenario2'], //...other parameters... ] where attribute list: required, specifies the attributes array to be validated, for s

debug\models\search\Profile attributeLabels()

attributeLabels() public method Returns the attribute labels. Attribute labels are mainly used for display purpose. For example, given an attribute firstName, we can declare a label First Name which is more user-friendly and can be displayed to end users. By default an attribute label is generated using generateAttributeLabel(). This method allows you to explicitly specify attribute labels. Note, in order to inherit labels defined in the parent class, a child class needs to merge the parent