includes/functions_content
includes/functions_user
includes/functions_display
includes/bbcode
includes/functions_messenger
includes/functions_posting
Das ist der Code im Controller:
Code: Alles auswählen
namespace waldkatze\tzv\controller;
use Symfony\Component\DependencyInjection\Container;
class main
{	
	protected $phpbb_container;
	protected $auth;
	protected $config;
	protected $db;
	protected $helper;
	protected $template;
	protected $user;
	protected $request;
	protected $pagination;
	protected $php_ext;
	protected $root_path;
  	protected $fetch_events; 
	public function __construct
	(
	    Container $phpbb_container,
	    \phpbb\auth\auth $auth,
	    \phpbb\config\config $config,
	    \phpbb\db\driver\driver_interface $db,			
	    \phpbb\controller\helper $helper,
	    \phpbb\request\request $request,
	    \phpbb\template\template $template,
	    \phpbb\user $user,
	    \phpbb\pagination $pagination,
	    $table_prefix,
	    $events,
	    $root_path,
	    $php_ext
	)
	{
		$this->auth          = $auth;
		$this->config       = $config;
		$this->db            = $db;
		$this->helper       = $helper;
		$this->request     = $request;
		$this->template   = $template;
		$this->user          = $user;
		$this->pagination = $pagination;	
		$this->root_path  = $root_path;
		$this->php_ext     = $php_ext;
		$this->events       = $events;
		
		$this->ext_root_path = $root_path . 'ext/waldkatze/tzv/';
                // TZV-Tabellen
		$this->table_prefix           = $table_prefix;
		$this->tourziel_table         = $phpbb_container->getParameter('tables.tourziel');
		$this->tourziel_cats_table    = $phpbb_container->getParameter('tables.tourziel_cats');
		$this->tourziel_country_table = $phpbb_container->getParameter('tables.tourziel_country');
		$this->tourziel_region_table  = $phpbb_container->getParameter('tables.tourziel_region');
		$this->tourziel_wlan_table    = $phpbb_container->getParameter('tables.tourziel_wlan');
		
		/*-------------------
	        Funktionen von phpBB 
	        -------------------*/
		include_once ($this->root_path . 'includes/functions_content.' . $this->php_ext);
		include_once ($this->root_path . 'includes/functions_user.' . $this->php_ext);
                include_once ($this->root_path . 'includes/functions_display.' . $this->php_ext);
                include_once ($this->root_path . 'includes/bbcode.' . $this->php_ext);
		include_once ($this->root_path . 'includes/functions_messenger.' . $this->php_ext);
		include_once ($this->root_path . 'includes/functions_posting.' . $this->php_ext);
}	
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 73: include_once(phpincludes/functions_content.test_board_): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 73: include_once(): Failed opening 'phpincludes/functions_content.test_board_' for inclusion (include_path='.:/usr/lib/php7.3')
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 74: include_once(phpincludes/functions_user.test_board_): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 74: include_once(): Failed opening 'phpincludes/functions_user.test_board_' for inclusion (include_path='.:/usr/lib/php7.3')
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 75: include_once(phpincludes/functions_display.test_board_): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 75: include_once(): Failed opening 'phpincludes/functions_display.test_board_' for inclusion (include_path='.:/usr/lib/php7.3')
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 76: include_once(phpincludes/bbcode.test_board_): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 76: include_once(): Failed opening 'phpincludes/bbcode.test_board_' for inclusion (include_path='.:/usr/lib/php7.3')
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 77: include_once(phpincludes/functions_messenger.test_board_): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 77: include_once(): Failed opening 'phpincludes/functions_messenger.test_board_' for inclusion (include_path='.:/usr/lib/php7.3')
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 78: include_once(phpincludes/functions_posting.test_board_): failed to open stream: No such file or directory
[phpBB Debug] PHP Warning: in file [ROOT]/ext/waldkatze/tzv/controller/main.php on line 78: include_once(): Failed opening 'phpincludes/functions_posting.test_board_' for inclusion (include_path='.:/usr/lib/php7.3')
Kann mir jemand helfen wo der Fehler liegt ?

