
Added group events, this kind of event types are only visible to members that belongs to one of the groups listed on the event. Change-Id: I9e7ba8ed10540b136997c054f7ace2c518bae184
65 lines
2.2 KiB
PHP
65 lines
2.2 KiB
PHP
<?php namespace ModelSerializers;
|
|
/**
|
|
* Copyright 2016 OpenStack Foundation
|
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
* you may not use this file except in compliance with the License.
|
|
* You may obtain a copy of the License at
|
|
* http://www.apache.org/licenses/LICENSE-2.0
|
|
* Unless required by applicable law or agreed to in writing, software
|
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
* See the License for the specific language governing permissions and
|
|
* limitations under the License.
|
|
**/
|
|
|
|
/**
|
|
* Class PresentationCategorySerializer
|
|
* @package ModelSerializers
|
|
*/
|
|
final class PresentationCategorySerializer extends SilverStripeSerializer
|
|
{
|
|
protected static $array_mappings = array
|
|
(
|
|
'Title' => 'name:json_string',
|
|
'Description' => 'description:json_string',
|
|
'Code' => 'code:json_string',
|
|
);
|
|
|
|
/**
|
|
* @param null $expand
|
|
* @param array $fields
|
|
* @param array $relations
|
|
* @param array $params
|
|
* @return array
|
|
*/
|
|
public function serialize($expand = null, array $fields = array(), array $relations = array(), array $params = array() )
|
|
{
|
|
$category = $this->object;
|
|
$values = parent::serialize($expand, $fields, $relations, $params);
|
|
$groups = array();
|
|
|
|
foreach($category->getGroups() as $group){
|
|
$groups[] = intval($group->getId());
|
|
}
|
|
$values['track_groups'] = $groups;
|
|
|
|
if (!empty($expand)) {
|
|
$exp_expand = explode(',', $expand);
|
|
foreach ($exp_expand as $relation) {
|
|
switch (trim($relation)) {
|
|
case 'track_groups': {
|
|
$groups = array();
|
|
unset($values['track_groups']);
|
|
foreach ($category->getGroups() as $g) {
|
|
$groups[] = SerializerRegistry::getInstance()->getSerializer($g)->serialize(null, [], ['none']);
|
|
}
|
|
$values['track_groups'] = $groups;
|
|
}
|
|
break;
|
|
}
|
|
}
|
|
}
|
|
|
|
return $values;
|
|
}
|
|
} |