From: Evan Prodromou Date: Fri, 21 Aug 2009 12:05:13 +0000 (-0400) Subject: Notice class has methods to check content length X-Git-Url: https://git.mxchange.org/?a=commitdiff_plain;h=4d05afae302f1870af369a713ab7ed291c821165;p=quix0rs-gnu-social.git Notice class has methods to check content length --- 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)); + } }