From 5d1a6f0fef3b99167babfa304ceda9b67720f399 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Tue, 20 May 2008 14:57:56 -0400 Subject: add validation methods to classes darcs-hash:20080520185756-84dde-290bc12cddfc1738a96385e95821d466eff11196.gz --- classes/Remote_profile.php | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'classes/Remote_profile.php') 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'))); + } } -- cgit v1.2.3-54-g00ecf