return_instance()

The method takes a single row and returns a PerchAPI_Base object.

Parameters

Type Description
Array Row

Return

The method returns a PerchAPI_Base object. If the given row is empty, it returns false.

Usage

$API = new PerchAPI(1.0, 'company_app');
$Articles = new CompanyApp_Articles($API);
$DB = $API->get('DB');

$row = $DB->get_row("SELECT * FROM " . $table . " WHERE status=published LIMIT 1");
$Article = $Articles->return_instance($row);