friendica/src/Object/Api/Friendica/Circle.php

53 lines
1.5 KiB
PHP
Raw Normal View History

2011-02-15 11:24:21 +00:00
<?php
2018-01-21 18:33:59 +00:00
/**
2023-01-01 14:36:24 +00:00
* @copyright Copyright (C) 2010-2023, the Friendica project
*
* @license GNU AGPL version 3 or any later version
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*
2018-01-21 18:33:59 +00:00
*/
2022-01-15 21:38:19 +00:00
namespace Friendica\Object\Api\Friendica;
2022-01-15 21:38:19 +00:00
use Friendica\BaseDataTransferObject;
2011-02-15 11:24:21 +00:00
class Circle extends BaseDataTransferObject
{
2022-01-15 21:38:19 +00:00
/** @var string */
protected $name;
/** @var int */
protected $id;
/** @var string */
protected $id_str;
/** @var array */
protected $user;
/** @var string */
protected $mode;
2021-11-08 07:23:18 +00:00
2022-01-15 21:38:19 +00:00
/**
* @param array $circle Circle row array
2022-01-15 21:38:19 +00:00
* @param array $user
* @throws \Friendica\Network\HTTPException\InternalServerErrorException
*/
public function __construct(array $circle, array $user)
2021-11-08 07:23:18 +00:00
{
$this->name = $circle['name'];
$this->id = $circle['id'];
$this->id_str = (string)$circle['id'];
2022-01-15 21:38:19 +00:00
$this->user = $user;
$this->mode = $circle['visible'] ? 'public' : 'private';
2021-11-08 07:23:18 +00:00
}
2011-02-15 11:24:21 +00:00
}