\ApiRelationProvider

ApiRelationProvider

Example:

$relationProvider = new ApiRelationProvider(
   array(
     "config"=>array(
       "comments"=>array( //HAS_MANY relation
         "columnName"=>"comments",
         "relationName"=>"comments",
         "return"=>"array" //string ("object"|"array") return CActiveRecord object or array
       ),
       "profile"=>array( //HAS_ONE relation
         "columnName"=>"profile",
         "relationName"=>"profile",
         "return"=>"array" //string ("object"|"array") return CActiveRecord object or array
       ),
    ),
    "model"=>$model //CActiveRecord $model for fetching relation data
));
$model = User::model()->findByPk(1);
$relations = $relationProvider->getData($model);

The above example returns the following array:

  array(
    'comments'=>array(
       array(
         'id'=>'42',
         'content'=>'comment 42 content',
         ...
       ),
       array(
         'id'=>'81',
         'content'=>'comment 81 content',
         ...
       ),
       ...
    ),
    'profile'=>array(
       'userid'=>'1',
       'name'=>'username',
       'login'=>'userlogin',
       'email'=>'user@email.com',
       ...
    )
  )

Summary

Methods
Properties
Constants
__construct()
getData()
getRelationsList()
$requestParamName
$with
$relationsConfig
$model
$relations
No constants found
getRelationData()
getSafeAttributes()
normalizeRelations()
No protected properties found
N/A
No private methods found
No private properties found
N/A

Properties

$requestParamName

$requestParamName : string

Type

string — parameter name containing a list of relations.

$with

$with : mixed

Type

mixed — List of relation aliases which to be fetched. Example: string: <pre> "parent, child" </pre> array: <pre> array('parent', 'child') </pre>

$relationsConfig

$relationsConfig : array

Type

array — relations config <ul> <li>'columnName' - string name of array key with relation data. If not set, the relation alias will be used.</li> <li>'relationName' - string name of relation in model. If not set, the relation alias will be used.</li> <li>'return' - 'object'|'array' return CActiveRecord object or array. 'array' by default.</li> <li> 'keyField' - string he name of the key field. This is a field that uniquely identifies a data record. Data in response will be indexed by this key value. If it's not set data will be indexed in order. </li> <li> 'safeAttributes' - string comma separated list of relation attributes which will be represented in response. </li> </ul>

$model

$model : \CActiveRecord

Type

\CActiveRecord — model for fetching related data

$relations

$relations

Methods

__construct()

__construct(array $relationsConfig)

Parameters

array $relationsConfig

getData()

getData(\CActiveRecord $model) : array

Function return relation data

Parameters

\CActiveRecord $model

Returns

array —

relations data

getRelationsList()

getRelationsList() : array

Function returns array with list of relations names

Returns

array

getRelationData()

getRelationData(string $relationName) : array

Function returns relation data array.

Attributes will be filtered by {@link getSafeAttributes} method

Parameters

string $relationName

Returns

array —

Array of relation datas

getSafeAttributes()

getSafeAttributes( $relationName, \type $attributes)

Function returns relation attribures that lists in

Parameters

$relationName
\type $attributes

normalizeRelations()

normalizeRelations() : array

Function normalizes $with property

Returns

array —

where key is relation name and value is relation config array.