Example #1
0
 /**
  * Constructor
  *
  * @return void
  */
 public function __construct($config = null, $params = null)
 {
     $this->config = !is_null($config) ? $config : getConfig()->get();
     $mysql = $this->config->mysql;
     if (!is_null($params) && isset($params['db'])) {
         $this->db = $params['db'];
     } else {
         $utilityObj = new Utility();
         EpiDatabase::employ('mysql', $mysql->mySqlDb, $mysql->mySqlHost, $mysql->mySqlUser, $utilityObj->decrypt($mysql->mySqlPassword));
         $this->db = getDatabase();
     }
     foreach ($mysql as $key => $value) {
         $this->{$key} = $value;
     }
     if (isset($this->config->user)) {
         $this->owner = $this->config->user->email;
     }
 }
Example #2
0
function getDatabase()
{
    $employ = extract(EpiDatabase::employ());
    if (empty($type) || empty($name) || empty($host) || empty($user)) {
        EpiException::raise(new EpiCacheTypeDoesNotExistException('Could not determine which database module to load', 404));
    } else {
        return EpiDatabase::getInstance($type, $name, $host, $user, $pass);
    }
}
Example #3
0
<?php

chdir('..');
include_once '../src/Epi.php';
Epi::setPath('base', '../src');
Epi::init('route', 'database');
EpiDatabase::employ('mysql', 'mysql', 'localhost', 'root', '');
// type = mysql, database = mysql, host = localhost, user = root, password = [empty]
// Epi::init('base','cache','session');
// Epi::init('base','cache-apc','session-apc');
// Epi::init('base','cache-memcached','session-apc');
/*
 * This is a sample page whch uses EpiCode.
 * There is a .htaccess file which uses mod_rewrite to redirect all requests to index.php while preserving GET parameters.
 * The $_['routes'] array defines all uris which are handled by EpiCode.
 * EpiCode traverses back along the path until it finds a matching page.
 *  i.e. If the uri is /foo/bar and only 'foo' is defined then it will execute that route's action.
 * It is highly recommended to define a default route of '' for the home page or root of the site (yoursite.com/).
 */
getRoute()->get('/', 'dbhandler');
getRoute()->run();
/*
 * ******************************************************************************************
 * Define functions and classes which are executed by EpiCode based on the $_['routes'] array
 * ******************************************************************************************
 */
function dbhandler()
{
    $users = getDatabase()->all('SELECT * FROM user');
    echo "<h2>All users</h2><ol>";
    foreach ($users as $key => $user) {