diff options
author | Evan Prodromou <evan@prodromou.name> | 2008-05-20 14:57:56 -0400 |
---|---|---|
committer | Evan Prodromou <evan@prodromou.name> | 2008-05-20 14:57:56 -0400 |
commit | 5d1a6f0fef3b99167babfa304ceda9b67720f399 (patch) | |
tree | 451830a55e2cacac2d224ac85a6e2d74a57a36ac /classes/Remote_profile.php | |
parent | a9c57467e77f5420cca866d5e4c28b10da2f75fc (diff) |
add validation methods to classes
darcs-hash:20080520185756-84dde-290bc12cddfc1738a96385e95821d466eff11196.gz
Diffstat (limited to 'classes/Remote_profile.php')
-rw-r--r-- | classes/Remote_profile.php | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/classes/Remote_profile.php b/classes/Remote_profile.php index 0aa727ad1..f36ac5f0c 100644 --- a/classes/Remote_profile.php +++ b/classes/Remote_profile.php @@ -40,4 +40,9 @@ class Remote_profile extends DB_DataObject /* the code above is auto generated do not remove the tag below */ ###END_AUTOCODE + + function validateUrl() { + return is_null($this->url) || + Validate::uri($this->url, array('allowed_schemes' => array('http', 'https'))); + } } |