/**
  * get filepath of requested plugin
  *
  * @param string $type
  * @param string $name
  * @return string|false
  */
 function _get_plugin_filepath($type, $name)
 {
     $_params = array('type' => $type, 'name' => $name);
     require_once SMARTY_CORE_DIR . 'core.assemble_plugin_filepath.php';
     return smarty_core_assemble_plugin_filepath($_params, $this);
 }
 /**
  * get filepath of requested plugin
  *
  * @param string $type
  * @param string $name
  * @return string|false
  */
 function _get_plugin_filepath($type, $name)
 {
     $_params = array('type' => $type, 'name' => $name);
     MyOOS_CoreApi::requireOnce('lib/smarty/libs/internals/core.assemble_plugin_filepath.php');
     return smarty_core_assemble_plugin_filepath($_params, $this);
 }