summaryrefslogtreecommitdiff
path: root/classes/Notice.php
diff options
context:
space:
mode:
authorEvan Prodromou <evan@prodromou.name>2008-05-20 14:57:56 -0400
committerEvan Prodromou <evan@prodromou.name>2008-05-20 14:57:56 -0400
commit5d1a6f0fef3b99167babfa304ceda9b67720f399 (patch)
tree451830a55e2cacac2d224ac85a6e2d74a57a36ac /classes/Notice.php
parenta9c57467e77f5420cca866d5e4c28b10da2f75fc (diff)
add validation methods to classes
darcs-hash:20080520185756-84dde-290bc12cddfc1738a96385e95821d466eff11196.gz
Diffstat (limited to 'classes/Notice.php')
-rw-r--r--classes/Notice.php9
1 files changed, 9 insertions, 0 deletions
diff --git a/classes/Notice.php b/classes/Notice.php
index 24c813330..3e6835ec9 100644
--- a/classes/Notice.php
+++ b/classes/Notice.php
@@ -52,4 +52,13 @@ class Notice extends DB_DataObject
}
return $this->profile;
}
+
+ function validateContent() {
+ return Validate::string($this->content, array('min_length' => 1, 'max_length' => 140));
+ }
+
+ function validateUrl() {
+ return is_null($this->url) ||
+ Validate::uri($this->url, array('allowed_schemes' => array('http', 'https')));
+ }
}