[ Index ]

PHP Cross Reference of Phabricator

title

Body

[close]

/src/applications/people/storage/ -> PhabricatorUserProfile.php (source)

   1  <?php
   2  
   3  final class PhabricatorUserProfile extends PhabricatorUserDAO {
   4  
   5    protected $userPHID;
   6    protected $title;
   7    protected $blurb;
   8    protected $profileImagePHID;
   9  
  10    public function getConfiguration() {
  11      return array(
  12        self::CONFIG_COLUMN_SCHEMA => array(
  13          'title' => 'text255',
  14          'blurb' => 'text',
  15          'profileImagePHID' => 'phid?',
  16        ),
  17        self::CONFIG_KEY_SCHEMA => array(
  18          'userPHID' => array(
  19            'columns' => array('userPHID'),
  20            'unique' => true,
  21          ),
  22        ),
  23      ) + parent::getConfiguration();
  24    }
  25  
  26  }


Generated: Sun Nov 30 09:20:46 2014 Cross-referenced by PHPXref 0.7.1