X-Git-Url: http://Server1/repobrowser/?p=kiriwrite%2F.git;a=blobdiff_plain;f=Documentation%2FEnglish%20%28British%29%2Fdeveloper-chapter3-getpagelist.html;h=99b6d7d2fff123e0c644c62c4fe0bb2356eaa714;hp=57660189fb5444987e208156a1e3eb5c52192af2;hb=fb02a3c6cb60580a1dce80522a06168919460207;hpb=5778819ec333bf3392b2bc4cc54714d60b37221e diff --git a/Documentation/English (British)/developer-chapter3-getpagelist.html b/Documentation/English (British)/developer-chapter3-getpagelist.html index 5766018..99b6d7d 100644 --- a/Documentation/English (British)/developer-chapter3-getpagelist.html +++ b/Documentation/English (British)/developer-chapter3-getpagelist.html @@ -22,7 +22,7 @@ Gets the page list from a database. The page list is returned as an array.
Parameters:

- $kiriwrite_dbmodule->getpagelist(); + $kiriwrite_dbmodule->getpagelist(options);

@@ -31,9 +31,26 @@ Gets the page list from a database. The page list is returned as an array.
$kiriwrite_dbmodule->selectdb(“database”);
- @pagelist = $kiriwrite_dbmodule->getpagelist(); + @pagelist = $kiriwrite_dbmodule->getpagelist({ StartFrom => 0, Limit => 50 }); +

+ + + + + + + + + + + + + + +
ValueDescription
StartFromSpecifies which page entry to start from.
LimitSpecifies how many pages that should be retrieved.
+
If a database error occurs while getting the list of pages in the database then the error returned should be 'DatabaseError' in the $error scalar and information about the error should be in the $errorext scalar.