]> git.mxchange.org Git - friendica.git/blobdiff - src/Model/Register.php
Issue 8371: More enhanced logging
[friendica.git] / src / Model / Register.php
index 88e424309e692fb4bca121cb0c59ea2775ffd0db..be00699bface1273fba86e0483de1062590761a6 100644 (file)
@@ -21,6 +21,7 @@
 
 namespace Friendica\Model;
 
+use Friendica\Content\Pager;
 use Friendica\Database\DBA;
 use Friendica\Util\DateTimeFormat;
 use Friendica\Util\Strings;
@@ -33,16 +34,20 @@ class Register
        /**
         * Return the list of pending registrations
         *
+        * @param int    $start Start count (Default is 0)
+        * @param int $count Count of the items per page (Default is @see Pager::ITEMS_PER_PAGE)
+        *
         * @return array
         * @throws \Exception
         */
-       public static function getPending()
+       public static function getPending($start = 0, $count = Pager::ITEMS_PER_PAGE)
        {
                $stmt = DBA::p(
-                       "SELECT `register`.*, `contact`.`name`, `contact`.`url`, `contact`.`micro`, `user`.`email`
+                       "SELECT `register`.*, `contact`.`name`, `contact`.`url`, `contact`.`micro`, `user`.`email`, `contact`.`nick`
                        FROM `register`
                        INNER JOIN `contact` ON `register`.`uid` = `contact`.`uid`
-                       INNER JOIN `user` ON `register`.`uid` = `user`.`uid`"
+                       INNER JOIN `user` ON `register`.`uid` = `user`.`uid`
+                       LIMIT ?, ?", $start, $count
                );
 
                return DBA::toArray($stmt);