public function RedhenOrg::save in RedHen CRM 7
Permanently saves the entity.
Return value
bool Returns FALSE if entity was not saved.
Overrides Entity::save
2 calls to RedhenOrg::save()
- RedhenOrg::setPrimaryContact in modules/
redhen_org/ lib/ redhen_org.entity.inc - Set the primary contact for an organization.
- RedhenOrg::setState in modules/
redhen_org/ lib/ redhen_org.entity.inc - Set the redhen_state for an organization.
File
- modules/
redhen_org/ lib/ redhen_org.entity.inc, line 78 - Redhen Group entity classes
Class
- RedhenOrg
- The class used for group entities.
Code
public function save() {
$this->updated = REQUEST_TIME;
return parent::save();
}