. * * @category OpenID * @package StatusNet * @author Evan Prodromou * @copyright 2012 StatusNet, Inc. * @license http://www.fsf.org/licensing/licenses/agpl-3.0.html AGPL 3.0 * @link http://status.net/ */ if (!defined('STATUSNET')) { exit(1); } /** * Store preferences for OpenID use in StatusNet * * @category OpenID * @package StatusNet * @author Evan Prodromou * @license http://www.fsf.org/licensing/licenses/agpl.html AGPLv3 * @link http://status.net/ * * @see DB_DataObject */ class User_openid_prefs extends Managed_DataObject { public $__table = 'user_openid_prefs'; // table name public $user_id; // The User with the prefs public $hide_profile_link; // Hide the link on the profile block? public $created; // datetime public $modified; // datetime /** * The One True Thingy that must be defined and declared. */ public static function schemaDef() { return array( 'description' => 'Per-user preferences for OpenID display', 'fields' => array('user_id' => array('type' => 'integer', 'not null' => true, 'description' => 'User whose prefs we are saving'), 'hide_profile_link' => array('type' => 'int', 'not null' => true, 'default' => 0, 'description' => 'Whether to hide profile links from profile block'), 'created' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was created'), 'modified' => array('type' => 'datetime', 'not null' => true, 'description' => 'date this record was modified'), ), 'primary key' => array('user_id'), 'foreign keys' => array('user_openid_prefs_user_id_fkey' => array('user', array('user_id' => 'id')), ), 'indexes' => array(), ); } }