-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathevents.php
38 lines (30 loc) · 904 Bytes
/
events.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<?php defined('BASEPATH') OR exit('No direct script access allowed');
/**
* streams_import Events Class
*
* @package CMS
* @subpackage streams_import Module
* @category Events
* @author Ryan Thompson - AI Web Systems, Inc.
* @website http://aiwebsystems.com
*/
class Events_Streams_import {
protected $CI;
public $debug = true;
public $base;
public function __construct()
{
$this->CI =& get_instance();
// Load up our classes
$this->CI->load->driver('Streams');
$this->CI->load->helper(array('streams_import/streams_import'));
$this->CI->load->config('streams_import/streams_import_c');
$this->debug = $this->CI->config->item('streams_import:debug');
/*
* Set up our root directory to scan
*/
$this->base = $this->CI->config->item('streams_import:profiles_directory');
// Register CRON module shtuff
}
}
/* End of file events.php */