mirror of
https://github.com/claudehohl/Stikked.git
synced 2025-04-25 20:41:20 -05:00
26 lines
387 B
PHP
Executable File
26 lines
387 B
PHP
Executable File
<?php
|
|
/**
|
|
* Class and Function List:
|
|
* Function list:
|
|
* - __construct()
|
|
* - index()
|
|
* Classes list:
|
|
* - Spamadmin extends CI_Controller
|
|
*/
|
|
|
|
class Spamadmin extends CI_Controller
|
|
{
|
|
|
|
function __construct()
|
|
{
|
|
parent::__construct();
|
|
}
|
|
|
|
function index()
|
|
{
|
|
$this->load->model('pastes');
|
|
$data = $this->pastes->getSpamLists();
|
|
$this->load->view('spamlist', $data);
|
|
}
|
|
}
|