From 4d05afae302f1870af369a713ab7ed291c821165 Mon Sep 17 00:00:00 2001 From: Evan Prodromou Date: Fri, 21 Aug 2009 08:05:13 -0400 Subject: [PATCH] Notice class has methods to check content length --- classes/Notice.php | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) diff --git a/classes/Notice.php b/classes/Notice.php index ba74a98a8f..e27f09c2c8 100644 --- a/classes/Notice.php +++ b/classes/Notice.php @@ -1352,4 +1352,20 @@ class Notice extends Memcached_DataObject return $last->id; } } + + static function maxContent() + { + $contentlimit = common_config('notice', 'contentlimit'); + // null => use global limit (distinct from 0!) + if (is_null($contentlimit)) { + $contentlimit = common_config('site', 'textlimit'); + } + return $contentlimit; + } + + static function contentTooLong($content) + { + $contentlimit = self::maxContent(); + return ($contentlimit > 0 && !empty($content) && (mb_strlen($content) > $contentlimit)); + } } -- 2.39.2