12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- <?php
- defined('GNUSOCIAL') || die();
- class Profile_block extends Managed_DataObject
- {
-
-
- public $__table = 'profile_block';
- public $blocker;
- public $blocked;
- public $modified;
-
-
- public static function schemaDef()
- {
- return array(
- 'fields' => array(
- 'blocker' => array('type' => 'int', 'not null' => true, 'description' => 'user making the block'),
- 'blocked' => array('type' => 'int', 'not null' => true, 'description' => 'profile that is blocked'),
- 'modified' => array('type' => 'timestamp', 'not null' => true, 'description' => 'date of blocking'),
- ),
- 'foreign keys' => array(
- 'profile_block_blocker_fkey' => array('user', array('blocker' => 'id')),
- 'profile_block_blocked_fkey' => array('profile', array('blocked' => 'id')),
- ),
- 'primary key' => array('blocker', 'blocked'),
- );
- }
- public static function exists(Profile $blocker, Profile $blocked)
- {
- return Profile_block::pkeyGet(array('blocker' => $blocker->id,
- 'blocked' => $blocked->id));
- }
- }
|