123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566 |
- <?php
- defined('GNUSOCIAL') || die();
- class Group_alias extends Managed_DataObject
- {
-
-
- public $__table = 'group_alias';
- public $alias;
- public $group_id;
- public $modified;
-
-
- public static function schemaDef()
- {
- return array(
- 'fields' => array(
- 'alias' => array('type' => 'varchar', 'length' => 64, 'not null' => true, 'description' => 'additional nickname for the group'),
- 'group_id' => array('type' => 'int', 'not null' => true, 'description' => 'group profile is blocked from'),
- 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date alias was created'),
- ),
- 'primary key' => array('alias'),
- 'foreign keys' => array(
- 'group_alias_group_id_fkey' => array('user_group', array('group_id' => 'id')),
- ),
- 'indexes' => array(
- 'group_alias_group_id_idx' => array('group_id'),
- ),
- );
- }
- public function getProfile()
- {
- $group = User_group::getKV('id', $this->group_id);
- if (!($group instanceof User_group)) {
- return null;
- }
- return $group->getProfile();
- }
- }
|