/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
- function sequenceKey()
- { return array(false, false); }
-
public static function schemaDef()
{
return array(
);
}
- function sequenceKey()
- {
- return array(false, false, false);
- }
-
function _getOembed($url) {
$parameters = array(
'maxwidth' => common_config('attachments', 'thumb_width'),
);
}
- function sequenceKey()
- {
- return array(false, false, false);
- }
-
/**
* Save oEmbed-provided thumbnail data
*
);
}
- function sequenceKey()
- {
- return array(false, false, false);
- }
-
/**
* Create a new inbox from existing Notice_inbox stuff
*/
const TIMEOUT = 120; // seconds after which to timeout the token
- /*
- DB_DataObject calculates the sequence key(s) by taking the first key returned by the keys() function.
- In this case, the keys() function returns user_id as the first key. user_id is not a sequence, but
- DB_DataObject's sequenceKey() will incorrectly think it is. Then, since the sequenceKey() is a numeric
- type, but is not set to autoincrement in the database, DB_DataObject will create a _seq table and
- manage the sequence itself. This is not the correct behavior for the user_id in this class.
- So we override that incorrect behavior, and simply say there is no sequence key.
- */
- function sequenceKey()
- {
- return array(false,false);
- }
-
function makeNew($user)
{
$login_token = Login_token::staticGet('user_id', $user->id);
/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
- function sequenceKey()
- {
- return array(false, false);
- }
-
public static function schemaDef()
{
return array(
);
}
- /*
- DB_DataObject calculates the sequence key(s) by taking the first key returned by the keys() function.
- In this case, the keys() function returns user_id as the first key. user_id is not a sequence, but
- DB_DataObject's sequenceKey() will incorrectly think it is. Then, since the sequenceKey() is a numeric
- type, but is not set to autoincrement in the database, DB_DataObject will create a _seq table and
- manage the sequence itself. This is not the correct behavior for the user_id in this class.
- So we override that incorrect behavior, and simply say there is no sequence key.
- */
- function sequenceKey()
- {
- return array(false,false);
- }
-
/**
* We have two compound keys with unique constraints:
* (transport, user_id) which is our primary key, and