21 lines
444 B
PHP
21 lines
444 B
PHP
<?php
|
|
|
|
class Crunchbutton_Support_Rep extends Cana_Table {
|
|
|
|
public function __construct($id = null) {
|
|
parent::__construct();
|
|
$this
|
|
->table('support_rep')
|
|
->idVar('id_support_rep')
|
|
->load($id);
|
|
}
|
|
|
|
public static function getLoggedInRep() {
|
|
$rep = Support_Rep::q(
|
|
'SELECT * FROM `support_rep` '.
|
|
'WHERE `name` like \'' . $_SESSION['username'] . '\' '.
|
|
'LIMIT 1');
|
|
return $rep;
|
|
}
|
|
}
|