sphinx\ActiveRecord fetchSnippet()

fetchSnippet() protected method Builds up the snippet value from the given query. protected string fetchSnippet ( $match, $options = [] )$match string The full-text query to build snippets for. $options array List of options in format: optionName => optionValue return string Snippet value.

BaseYii $container

$container public static property The dependency injection (DI) container used by createObject(). You may use yii\di\Container::set() to set up the needed dependencies of classes and their initial property values. See also: createObject() yii\di\Container public static yii\di\Container $container = null

BaseYii info()

info() public static method Logs an informative message. An informative message is typically logged by an application to keep record of something important (e.g. an administrator logs in). public static void info ( $message, $category = 'application' )$message string The message to be logged. $category string The category of the message.

base\Event $sender

$sender public property The sender of this event. If not set, this property will be set as the object whose trigger() method is called. This property may also be a null when this event is a class-level event which is triggered in a static context. public object $sender = 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

authclient\Collection setClients()

setClients() public method public void setClients ( array $clients )$clients array List of auth clients

base\UserException

All Classes | Methods Inheritance yii\base\UserException » yii\base\Exception » Exception Subclasses yii\base\InvalidRouteException, yii\console\Exception, yii\web\BadRequestHttpException, yii\web\ConflictHttpException, yii\web\ForbiddenHttpException, yii\web\GoneHttpException, yii\web\HttpException, yii\web\MethodNotAllowedHttpException, yii\web\NotAcceptableHttpException, yii\web\NotFoundHttpException, yii\web\ServerErrorHttpException, yii\web\TooManyRequestsHttpException, yii\web\Unauth

web\Request $enableCsrfCookie

$enableCsrfCookie public property Whether to use cookie to persist CSRF token. If false, CSRF token will be stored in session under the name of $csrfParam. Note that while storing CSRF tokens in session increases security, it requires starting a session for every page, which will degrade your site performance. public boolean $enableCsrfCookie = true

validators\StringValidator $max

$max public property Maximum length. If not set, it means no maximum length limit. See also $tooLong for the customized message for a too long string. public integer $max = null

base\ViewRenderer render()

render() public abstract method Renders a view file. This method is invoked by yii\base\View whenever it tries to render a view. Child classes must implement this method to render the given view file. public abstract string render ( $view, $file, $params )$view yii\base\View The view object used for rendering the file. $file string The view file. $params array The parameters to be passed to the view file. return string The rendering result