没有命名空间的类 yii yii\base yii\behaviors yii\caching yii\captcha yii\console yii\console\controllers yii\console\widgets yii\data yii\db yii\db\conditions yii\db\cubrid yii\db\cubrid\conditions yii\db\mssql yii\db\mssql\conditions yii\db\mysql yii\db\oci yii\db\oci\conditions yii\db\pgsql yii\db\sqlite yii\db\sqlite\conditions yii\di yii\filters yii\filters\auth yii\grid yii\helpers yii\i18n yii\log yii\mail yii\mutex yii\rbac yii\rest yii\test yii\validators yii\web yii\widgets

Interface yii\web\Linkable

实现yii\data\Pagination
可用版本自2.0
源码 https://github.com/yiichina/yii2/blob/api/framework/web/Linkable.php

Linkable is the interface that should be implemented by classes that typically represent locatable resources.

公共方法

隐藏继承的方法

方法描述被定义在
getLinks() Returns a list of links. yii\web\Linkable

方法详情

getLinks() 公共 抽象 方法

Returns a list of links.

Each link is either a URI or a yii\web\Link object. The return value of this method should be an array whose keys are the relation names and values the corresponding links.

If a relation name corresponds to multiple links, use an array to represent them.

For example,

[
    'self' => 'http://example.com/users/1',
    'friends' => [
        'http://example.com/users/2',
        'http://example.com/users/3',
    ],
    'manager' => $managerLink, // $managerLink is a Link object
]
public abstract array getLinks()
return array

The links