Home
last modified time | relevance | path

Searched refs:php_ext (Results 1 – 25 of 142) sorted by relevance

123456

/dports/www/phpbb3/phpBB3/phpbb/hook/
H A Dfinder.php34 protected $php_ext; variable in phpbb\\hook\\finder
40 * @param string $php_ext php file extension
43 …public function __construct($phpbb_root_path, $php_ext, \phpbb\cache\driver\driver_interface $cach… argument
47 $this->php_ext = $php_ext;
76 …pos($file, 'hook_') === 0 && substr($file, -strlen('.' . $this->php_ext)) === '.' . $this->php_ext)
78 $hook_files[] = substr($file, 0, -(strlen($this->php_ext) + 1));
/dports/www/phpbb3/phpBB3/phpbb/install/module/obtain_data/task/
H A Dobtain_update_files.php41 protected $php_ext; variable in phpbb\\install\\module\\obtain_data\\task\\obtain_update_files
49 * @param string $php_ext
51 …ic function __construct(config $config, iohandler_interface $iohandler, $phpbb_root_path, $php_ext) argument
56 $this->php_ext = $php_ext;
76 $update_info_file = $this->phpbb_root_path . 'install/update/index.' . $this->php_ext;
88 if ($this->php_ext !== 'php')
90 $custom_extension = '.' . $this->php_ext;
/dports/www/phpbb3/phpBB3/phpbb/install/helper/
H A Dcontainer_factory.php35 protected $php_ext; variable in phpbb\\install\\helper\\container_factory
61 * @param string $php_ext Extension of PHP files
63 …uct(language $language, request $request, update_helper $update_helper, $phpbb_root_path, $php_ext) argument
69 $this->php_ext = $php_ext;
133 if (!filesize($this->phpbb_root_path . 'config.' . $this->php_ext))
146 $phpbb_config_php_file = new \phpbb\config_php_file($this->phpbb_root_path, $this->php_ext);
147 …$phpbb_container_builder = new \phpbb\di\container_builder($this->phpbb_root_path, $this->php_ext);
185 $this->update_helper->include_file('includes/compatibility_globals.' . $this->php_ext);
187 $this->update_helper->include_file('includes/constants.' . $this->php_ext);
H A Dinstall_helper.php24 protected $php_ext; variable in phpbb\\install\\helper\\install_helper
35 * @param string $php_ext Extension of PHP files
37 public function __construct($phpbb_root_path, $php_ext) argument
40 $this->php_ext = $php_ext;
50 $config_path = $this->phpbb_root_path . 'config.' . $this->php_ext;
/dports/www/phpbb3/phpBB3/phpbb/cron/task/core/
H A Dqueue.php22 protected $php_ext; variable in phpbb\\cron\\task\\core\\queue
30 * @param string $php_ext PHP file extension
34 public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config, $cache_dir) argument
37 $this->php_ext = $php_ext;
51 include($this->phpbb_root_path . 'includes/functions_messenger.' . $this->php_ext);
66 return file_exists($this->cache_dir . 'queue.' . $this->php_ext);
H A Dtidy_database.php22 protected $php_ext; variable in phpbb\\cron\\task\\core\\tidy_database
29 * @param string $php_ext The PHP file extension
32 public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config) argument
35 $this->php_ext = $php_ext;
48 include($this->phpbb_root_path . 'includes/functions_admin.' . $this->php_ext);
H A Dtidy_warnings.php24 protected $php_ext; variable in phpbb\\cron\\task\\core\\tidy_warnings
31 * @param string $php_ext PHP file extension
34 public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config) argument
37 $this->php_ext = $php_ext;
50 include($this->phpbb_root_path . 'includes/functions_admin.' . $this->php_ext);
H A Dprune_all_forums.php26 protected $php_ext; variable in phpbb\\cron\\task\\core\\prune_all_forums
34 * @param string $php_ext The PHP file extension
38 …public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config, \phpbb\db\dr… argument
41 $this->php_ext = $php_ext;
55 include($this->phpbb_root_path . 'includes/functions_admin.' . $this->php_ext);
H A Dtidy_search.php33 protected $php_ext; variable in phpbb\\cron\\task\\core\\tidy_search
69 * @param string $php_ext The PHP file extension
76 …public function __construct($phpbb_root_path, $php_ext, \phpbb\auth\auth $auth, \phpbb\config\conf… argument
79 $this->php_ext = $php_ext;
98 …$search = new $search_type($error, $this->phpbb_root_path, $this->php_ext, $this->auth, $this->con…
H A Dprune_forum.php26 protected $php_ext; variable in phpbb\\cron\\task\\core\\prune_forum
44 * @param string $php_ext PHP file extension
48 …public function __construct($phpbb_root_path, $php_ext, \phpbb\config\config $config, \phpbb\db\dr… argument
51 $this->php_ext = $php_ext;
75 include($this->phpbb_root_path . 'includes/functions_admin.' . $this->php_ext);
/dports/www/phpbb3/phpBB3/phpbb/notification/method/
H A Dmessenger_base.php31 protected $php_ext; variable in phpbb\\notification\\method\\messenger_base
38 * @param string $php_ext
40 public function __construct(\phpbb\user_loader $user_loader, $phpbb_root_path, $php_ext) argument
44 $this->php_ext = $php_ext;
85 include($this->phpbb_root_path . 'includes/functions_user.' . $this->php_ext);
95 include($this->phpbb_root_path . 'includes/functions_messenger.' . $this->php_ext);
122 …'U_NOTIFICATION_SETTINGS' => generate_board_url() . '/ucp.' . $this->php_ext . '?i=ucp_notificati…
/dports/www/phpbb3/phpBB3/phpbb/
H A Dclass_loader.php31 private $php_ext; variable in phpbb\\class_loader
48 * @param string $php_ext The file extension for PHP files
51 …public function __construct($namespace, $path, $php_ext = 'php', \phpbb\cache\driver\driver_interf… argument
60 $this->php_ext = $php_ext;
116 return $this->path . $this->cached_paths[$class] . '.' . $this->php_ext;
126 if (!file_exists($this->path . $relative_path . '.' . $this->php_ext))
137 return $this->path . $relative_path . '.' . $this->php_ext;
H A Dconfig_php_file.php22 protected $php_ext; variable in phpbb\\config_php_file
51 * @param string $php_ext php file extension
53 function __construct($phpbb_root_path, $php_ext) argument
56 $this->php_ext = $php_ext;
57 $this->config_file = $this->phpbb_root_path . 'config.' . $this->php_ext;
/dports/www/phpbb3/phpBB3/phpbb/routing/
H A Dhelper.php61 protected $php_ext; variable in phpbb\\routing\\helper
72 * @param string $php_ext PHP file extension
74 …t\request_interface $request, \phpbb\filesystem\filesystem $filesystem, $phpbb_root_path, $php_ext) argument
82 $this->php_ext = $php_ext;
128 …$page_name, empty($this->config['enable_mod_rewrite']) ? '/app.' . $this->php_ext : '', $base_url);
135 …$base_url = str_replace('/app.' . $this->php_ext, '/' . $this->phpbb_root_path . 'app.' . $this->p…
157 $route_url = 'app.' . $this->php_ext . '/' . $route_url;
/dports/www/phpbb3/phpBB3/phpbb/install/module/install_database/task/
H A Dcreate_schema_file.php46 protected $php_ext; variable in phpbb\\install\\module\\install_database\\task\\create_schema_file
55 * @param string $php_ext Extension of PHP files
61 $php_ext) argument
80 $this->php_ext = $php_ext;
117 include ($this->phpbb_root_path . 'includes/constants.' . $this->php_ext);
120 $finder = new \phpbb\finder($this->filesystem, $this->phpbb_root_path, null, $this->php_ext);
130 $this->php_ext,
/dports/www/phpbb3/phpBB3/phpbb/help/controller/
H A Dcontroller.php37 protected $php_ext; variable in phpbb\\help\\controller\\controller
47 * @param string $php_ext
49 …ager, \phpbb\template\template $template, \phpbb\language\language $language, $root_path, $php_ext) argument
56 $this->php_ext = $php_ext;
73 make_jumpbox(append_sid("{$this->root_path}viewforum.{$this->php_ext}"));
/dports/www/phpbb3/phpBB3/ext/phpbb/viglink/event/
H A Dacp_listener.php42 protected $php_ext; variable in phpbb\\viglink\\event\\acp_listener
54 * @param string $php_ext PHP file extension
58 $phpbb_root_path, $php_ext) argument
67 $this->php_ext = $php_ext;
103 …redirect(append_sid($this->phpbb_root_path . 'adm/index.' . $this->php_ext, 'i=acp_help_phpbb&mode…
132 …TINGS_CHANGE', append_sid($this->phpbb_root_path . 'adm/index.' . $this->php_ext, 'i=-phpbb-viglin…
/dports/www/phpbb3/phpBB3/config/default/container/
H A Dservices_feed.yml16 - '%core.php_ext%'
40 - '%core.php_ext%'
54 - '%core.php_ext%'
68 - '%core.php_ext%'
82 - '%core.php_ext%'
100 - '%core.php_ext%'
114 - '%core.php_ext%'
128 - '%core.php_ext%'
/dports/www/phpbb3/phpBB3/phpbb/language/
H A Dlanguage_file_loader.php31 protected $php_ext; variable in phpbb\\language\\language_file_loader
42 * @param string $php_ext Extension of PHP files
44 public function __construct($phpbb_root_path, $php_ext) argument
47 $this->php_ext = $php_ext;
122 $language_file = basename($component, '.' . $this->php_ext);
140 $filename = $component . '.' . $this->php_ext;
/dports/www/phpbb3/phpBB3/phpbb/install/helper/file_updater/
H A Dcompression_file_updater.php41 protected $php_ext; variable in phpbb\\install\\helper\\file_updater\\compression_file_updater
48 * @param string $php_ext
50 public function __construct(update_helper $update_helper, $phpbb_root_path, $php_ext) argument
55 $this->php_ext = $php_ext;
67 $this->update_helper->include_file('includes/functions_compress.' . $this->php_ext);
H A Dftp_file_updater.php41 protected $php_ext; variable in phpbb\\install\\helper\\file_updater\\ftp_file_updater
48 * @param string $php_ext
50 public function __construct(update_helper $update_helper, $phpbb_root_path, $php_ext) argument
55 $this->php_ext = $php_ext;
71 $this->update_helper->include_file('includes/functions_transfer.' . $this->php_ext);
/dports/www/phpbb3/phpBB3/phpbb/notification/type/
H A Dreport_post.php116 …'U_VIEW_REPORT' => "{$board_url}/mcp.{$this->php_ext}?f={$this->get_data('forum_id')}&p={$this-…
117 …'U_VIEW_POST' => "{$board_url}/viewtopic.{$this->php_ext}?p={$this->item_id}#p{$this->item_id}",
118 …'U_NEWEST_POST' => "{$board_url}/viewtopic.{$this->php_ext}?f={$this->get_data('forum_id')}&t={…
119 …'U_TOPIC' => "{$board_url}/viewtopic.{$this->php_ext}?f={$this->get_data('forum_id')}&t={$this…
120 …'U_VIEW_TOPIC' => "{$board_url}/viewtopic.{$this->php_ext}?f={$this->get_data('forum_id')}&t={$…
121 'U_FORUM' => "{$board_url}/viewforum.{$this->php_ext}?f={$this->get_data('forum_id')}",
132 …return append_sid($this->phpbb_root_path . 'mcp.' . $this->php_ext, "f={$this->get_data('forum_id'…
/dports/www/phpbb3/phpBB3/phpbb/passwords/driver/
H A Dmd5_phpbb2.php33 protected $php_ext; variable in phpbb\\passwords\\driver\\md5_phpbb2
42 * @param string $php_ext PHP file extension
44 … function __construct($request, salted_md5 $salted_md5, helper $helper, $phpbb_root_path, $php_ext) argument
50 $this->php_ext = $php_ext;
110 include($this->phpbb_root_path . 'includes/utf/data/recode_basic.' . $this->php_ext);
/dports/www/phpbb3/phpBB3/phpbb/cron/
H A Dmanager.php60 protected $php_ext; variable in phpbb\\cron\\manager
68 * @param string $php_ext PHP file extension
70 …_construct(ContainerInterface $phpbb_container, helper $routing_helper, $phpbb_root_path, $php_ext) argument
75 $this->php_ext = $php_ext;
196 return new wrapper($task, $this->routing_helper, $this->phpbb_root_path, $this->php_ext);
/dports/www/phpbb3/phpBB3/phpbb/textformatter/s9e/
H A Dquote_helper.php43 * @param string $php_ext
45 public function __construct(\phpbb\user $user, $root_path, $php_ext) argument
47 …$this->post_url = append_sid($root_path . 'viewtopic.' . $php_ext, 'p={POST_ID}#p{POST_ID}', false…
48 $this->msg_url = append_sid($root_path . 'ucp.' . $php_ext, 'i=pm&mode=view&p={MSG_ID}', false);
49 …$this->profile_url = append_sid($root_path . 'memberlist.' . $php_ext, 'mode=viewprofile&u={USER_I…

123456