/**
  * @copydoc PKPPlugin::getTemplatePath()
  */
 function getTemplatePath($inCore = false)
 {
     return parent::getTemplatePath($inCore) . 'templates/';
 }
 /**
  * Get the template path for this plugin.
  */
 function getTemplatePath()
 {
     return parent::getTemplatePath() . 'templates/';
 }
 /**
  * @see Plugin::getTemplatePath($inCore)
  */
 function getTemplatePath($inCore = false)
 {
     return parent::getTemplatePath($inCore) . 'templates' . DIRECTORY_SEPARATOR;
 }
Beispiel #4
0
 /**
  * @see PKPPlugin::getTemplatePath()
  * @return string
  */
 function getTemplatePath()
 {
     return parent::getTemplatePath() . DIRECTORY_SEPARATOR . 'templates';
 }
 /**
  * @see Plugin::getTemplatePath($inCore)
  */
 function getTemplatePath($inCore = false)
 {
     // This plugin have no application level templates.
     $inCore = true;
     return parent::getTemplatePath($inCore) . 'templates' . DIRECTORY_SEPARATOR;
 }