Created
October 22, 2010 18:10
-
-
Save eyedol/641068 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
if (Kohana::find_file('libraries/api', | |
Kohana::config('config.extension_prefix').$library_file_name)) // Library file exists | |
{ | |
include Kohana::find_file('libraries/api', Kohana::config('config.extension_prefix').$library_file_name); | |
print_r(die($library_file_name)); | |
// Create instance of the implementing library/class | |
$api_object = new $library_file_name(&$this); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment