Public Member Functions | |
__toString () | |
Static Public Member Functions | |
static | getCategoryCallValue () |
static | getModuleClassName () |
static | canSaveMetadata () |
static | getDefaultMetadata () |
static | isTypeDeletable () |
static | getMashableActivityRulesType () |
static | hasReadPermissionsOptimization () |
static | getGamificationRulesType () |
static | hasReadPermissionsSubscriptionOptimization () |
Data Fields | |
const | CONTACT_ATTENDEE_PREFIX = 'Contact_' |
const | USER_ATTENDEE_PREFIX = 'User_' |
Protected Member Functions | |
beforeSave () | |
Static Protected Member Functions | |
static | translatedAttributeLabels ($language) |
Definition at line 37 of file Meeting.php.
__toString | ( | ) |
Returns the displayable string for the class. Should be overridden in any model that can provide a meaningful string representation of itself.
Reimplemented from RedBeanModel.
Definition at line 43 of file Meeting.php.
static getCategoryCallValue | ( | ) | [static] |
Definition at line 63 of file Meeting.php.
static canSaveMetadata | ( | ) | [static] |
By default models cannot save their metadata, allowing them to be loaded quickly because the loading of of metadata can be avoided as much as possible. To make a model able to save its metadata override this method to return true. PUT it before the getDefaultMetadata in the derived class.
Reimplemented from Activity.
Definition at line 73 of file Meeting.php.
static getDefaultMetadata | ( | ) | [static] |
Returns the default meta data for the class. It must be appended to the meta data from the parent model, if any.
Reimplemented from Activity.
Definition at line 78 of file Meeting.php.
static isTypeDeletable | ( | ) | [static] |
To be overriden on intermediate derived classes to return false so that deletes are not done on intermediate classes because the object relational mapping will not clean up properly. For example if User is a Person, and Person is a RedBeanModel delete should be called only on User, not on Person. So User must override isDeletable to return false.
Reimplemented from Activity.
Definition at line 144 of file Meeting.php.
beforeSave | ( | ) | [protected] |
Special handling of the import scenario. When you are importing a model, you can potentially set the created/modified user/datetime which is normally not allowed since they are read-only attributes. This logic helps to allow for this special use case.
Reimplemented from Item.
Definition at line 154 of file Meeting.php.
static hasReadPermissionsOptimization | ( | ) | [static] |
Override on any models you want to utilize ReadPermissionsOptimization
Reimplemented from SecurableItem.
Definition at line 171 of file Meeting.php.
static getGamificationRulesType | ( | ) | [static] |
Reimplemented from Item.
Definition at line 176 of file Meeting.php.
static hasReadPermissionsSubscriptionOptimization | ( | ) | [static] |
Should model have read permission subscription table or not. This feature is used to track of created/deleted models, so we can easily sync Zurmo with Google Apps or Outlook
Reimplemented from OwnedSecurableItem.
Definition at line 181 of file Meeting.php.