15 lines
298 B
PHP
15 lines
298 B
PHP
<?php
|
|
/**
|
|
* @file metaparser.lnk.php
|
|
* @date 2018-03-21
|
|
* @author Go Namhyeon <gnh1201@gmail.com>
|
|
* @brief PHP-Metaparser library linker
|
|
*/
|
|
|
|
if(!class_exists("MetaParser")) {
|
|
$inc_file = "./vendor/PHP-MetaParser/MetaParser.class.php";
|
|
if(file_exists($inc_file)) {
|
|
include($inc_file);
|
|
}
|
|
}
|