helpers\Markdown

All Classes | Properties | Methods Inheritance yii\helpers\Markdown » yii\helpers\BaseMarkdown Available since version 2.0 Source Code https://github.com/yiisoft/yii2/blob/master/framework/helpers/Markdown.php Markdown provides an ability to transform markdown into HTML. Basic usage is the following: $myHtml = Markdown::process($myText); // use original markdown flavor $myHtml = Markdown::process($myText, 'gfm'); // use github flavored markdown $myHtml = Markdown::process($myText, 'extra

grid\Column renderFilterCell()

renderFilterCell() public method Renders the filter cell. public void renderFilterCell ( )

debug\panels\DbPanel isQueryCountCritical()

isQueryCountCritical() public method Check if given queries count is critical according settings. public boolean isQueryCountCritical ( $count )$count integer Queries count

redis\Session destroySession()

destroySession() public method Session destroy handler. Do not call this method directly. public boolean destroySession ( $id )$id string Session ID return boolean Whether session is destroyed successfully

mongodb\file\Collection setPrefix()

setPrefix() public method public void setPrefix ( $prefix )$prefix string Prefix of this file collection.

db\ActiveRecordInterface deleteAll()

deleteAll() public abstract static method Deletes records using the provided conditions. WARNING: If you do not specify any condition, this method will delete ALL rows in the table. For example, to delete all customers whose status is 3: Customer::deleteAll([status = 3]); public abstract static integer deleteAll ( $condition = null )$condition array The condition that matches the records that should get deleted. Please refer to yii\db\QueryInterface::where() on how to specify this param

sphinx\Query addWithin()

addWithin() public method Adds additional WITHIN GROUP ORDER BY columns to the query. See also within(). public $this addWithin ( $columns )$columns string|array The columns (and the directions) to find best row within a group. Columns can be specified in either a string (e.g. "id ASC, name DESC") or an array (e.g. ['id' => Query::SORT_ASC, 'name' => Query::SORT_DESC]). The method will automatically quote the column names unless a column contains some parenthesis (which means the

mongodb\file\Download getSize()

getSize() public method Returns the size of the associated file. public integer getSize ( )return integer File size.

bootstrap\Nav $dropdownClass

$dropdownClass public property (available since version 2.0.7) Name of a class to use for rendering dropdowns withing this widget. Defaults to yii\bootstrap\Dropdown. public string $dropdownClass = 'yii\bootstrap\Dropdown'

web\Session get()

get() public method Returns the session variable value with the session variable name. If the session variable does not exist, the $defaultValue will be returned. public mixed get ( $key, $defaultValue = null )$key string The session variable name $defaultValue mixed The default value to be returned when the session variable does not exist. return mixed The session variable value, or $defaultValue if the session variable does not exist.