mirror of
https://github.com/FH-Complete/FHC-Core.git
synced 2026-07-25 08:34:29 +00:00
issue plausichecks: added issue producer files, code formatting
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
<?php
|
||||
|
||||
if (! defined('BASEPATH')) exit('No direct script access allowed');
|
||||
|
||||
class Lib
|
||||
{
|
||||
private $_ci; // Code igniter instance
|
||||
|
||||
/**
|
||||
* Object initialization
|
||||
*/
|
||||
public function __construct()
|
||||
{
|
||||
$this->_ci =& get_instance();
|
||||
|
||||
$this->_ci->load->model('', '');
|
||||
}
|
||||
|
||||
public function getStudents()
|
||||
{
|
||||
$qry = '
|
||||
|
||||
';
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user