/* the code above is auto generated do not remove the tag below */
###END_AUTOCODE
- // XXX: if profile_id changes, this goes invalid. To be fair, that's a very edge case
- static $profile;
-
function getProfile() {
- if (!$this->profile) {
- $this->profile = Profile::staticGet($this->profile_id);
- }
- return $this->profile;
+ return Profile::staticGet($this->profile_id);
}
function validateContent() {
}
function validateUrl() {
- return is_null($this->url) ||
+ return is_null($this->url) || (strlen($this->url) == 0) ||
Validate::uri($this->url, array('allowed_schemes' => array('http', 'https')));
}
}