Created
November 26, 2013 16:28
-
-
Save ma3tk/7661430 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/** | |
* Input_BiblManager.php | |
* | |
* @author {$author} | |
* @package Input | |
* @version $Id: a17b62fb78834da3c636228f401e740cd5bfdb64 $ | |
*/ | |
//require_once INPUT_BASE_URL_APP_APPMANAGER; | |
/** | |
* Input_BiblManager | |
* | |
* @author {$author} | |
* @access public | |
* @package Input | |
*/ | |
class Input_BiblManager extends Ethna_AppManager | |
{ | |
/** @protected object Ethna_Session セッションオブジェクト */ | |
protected $session; | |
/** | |
* Ethna_AppManagerのコンストラクタ | |
* | |
* @access public | |
* @param object Ethna_Backend $backend backendオブジェクト | |
*/ | |
public function __construct($backend) | |
{ | |
$this->session = $backend->getSession(); | |
$db_list = $backend->getDBList(); | |
if (Ethna::isError($db_list) == false) { | |
foreach ($db_list as $elt) { | |
$varname = $elt['varname']; | |
$this->$varname = $elt['db']; | |
} | |
} | |
} | |
function aaa(){ | |
$aa = get_class_vars("Ethna_AppManager"); | |
//$this->dbmgr = $this->backend; | |
return INPUT_BASE_URL; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment