web\Linkable getLinks()

getLinks() public abstract method

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

doc_Yii
2016-10-30 17:15:18
Comments
Leave a Comment

Please login to continue.