Diff
Index: getrows.md
--- getrows.md (nonexistent)
+++ getrows.md (revision 4)
@@ -0,0 +1,27 @@
+
+# EmailNotifications::getRows - Get rows to display on current page.
+
+### Usage
+
+> array EmailNotifications::getRows([ int $start = '0' ], [ string $search_term = '' ], [ string $order_by = 'subject asc' ])
+
+### Description
+
+> Should return an array with each element being an associative array representing one table row.
+
+### Parameters
+
+Parameter | Required | Type | Description
+------------- |------------- |------------- |-------------
+start | No | int |
+search_term | No | string |
+order_by | No | string |
+
+### Return
+> array
+### See Also
+
+* formatRow()
+* getTotal()
+
+
Full Code
EmailNotifications::getRows - Get rows to display on current page.
Usage
array EmailNotifications::getRows([ int $start = '0' ], [ string $search_term = '' ], [ string $order_by = 'subject asc' ])
Description
Should return an array with each element being an associative array representing one table row.
Parameters
| Parameter |
Required |
Type |
Description |
| start |
No |
int |
|
| search_term |
No |
string |
|
| order_by |
No |
string |
|
Return
array
See Also