File path: dist/twist/Core/Models/Database/Records.model.php
Namespace: Twist\Core\Models\Database
all
— Get all the records from a database table.
Name | Description |
---|---|
[$strOrderBy = null] | n/a |
[$strDirection = 'ASC'] | n/a |
void — No return information has been documented for this function.
<?php
//Set the variables for the example
$strOrderBy = null;
$strDirection = 'ASC';
//Call the function all with the example vars
$resRecords = new \Twist\Core\Models\Database\Records();
$resRecords -> all($strOrderBy, $strDirection);