Home
last modified time | relevance | path

Searched refs:configContainer (Results 1 – 25 of 336) sorted by relevance

12345678910>>...14

/dports/audio/ampache/ampache-php74-5.0.0/src/Gui/System/
H A DConfigViewAdapter.php30 private ConfigContainerInterface $configContainer; variable in Ampache\\Gui\\System\\ConfigViewAdapter
33 ConfigContainerInterface $configContainer argument
35 $this->configContainer = $configContainer;
40 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::USER_FLAGS);
45 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::WAVEFORM);
50 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DIRECTPLAY);
55 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::LICENSING);
60 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::SHOW_LICENSE);
65 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::SHOW_SKIPPED_TIMES);
70 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::SHOW_PLAYED_TIMES);
[all …]
H A DUpdateViewAdapter.php36 private ConfigContainerInterface $configContainer; variable in Ampache\\Gui\\System\\UpdateViewAdapter
39 ConfigContainerInterface $configContainer argument
41 $this->configContainer = $configContainer;
49 $this->configContainer->get(ConfigurationKeyEnum::LANG)
55 return $this->configContainer->get(ConfigurationKeyEnum::SITE_CHARSET);
62 $this->configContainer->get(ConfigurationKeyEnum::SITE_TITLE)
82 '<strong>' . $this->configContainer->get(ConfigurationKeyEnum::VERSION) . '</strong>',
101 $this->configContainer->getWebPath(),
126 return $this->configContainer->getWebPath();
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/NowPlaying/
H A DShowAction.php45 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\NowPlaying\\ShowAction
52 ConfigContainerInterface $configContainer, argument
56 $this->configContainer = $configContainer;
65 …$this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::USE_NOW_PLAYING_EMBEDDED) === false…
66 $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DEMO_MODE) === true
74 … $nowPlayingCssFile = $this->configContainer->get(ConfigurationKeyEnum::NOW_PLAYING_CSS_FILE);
76 …$nowPlayingRefreshLimit = $this->configContainer->get(ConfigurationKeyEnum::NOW_PLAYING_REFRESH_LI…
77 $language = $this->configContainer->get(ConfigurationKeyEnum::LANG);
82 $this->configContainer->getWebPath(),
112 $this->configContainer->get(ConfigurationKeyEnum::SITE_CHARSET),
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/tests/Gui/System/
H A DConfigViewAdapterTest.php35 private MockInterface $configContainer; variable in Ampache\\Gui\\System\\ConfigViewAdapterTest
42 $this->configContainer = $this->mock(ConfigContainerInterface::class);
45 $this->configContainer
51 $this->configContainer->shouldReceive('isFeatureEnabled')
63 $this->configContainer->shouldReceive('isFeatureEnabled')
75 $this->configContainer->shouldReceive('isFeatureEnabled')
87 $this->configContainer->shouldReceive('isFeatureEnabled')
99 $this->configContainer->shouldReceive('isFeatureEnabled')
111 $this->configContainer->shouldReceive('isFeatureEnabled')
123 $this->configContainer->shouldReceive('isFeatureEnabled')
H A DUpdateViewAdapterTest.php35 private ?MockInterface $configContainer; variable in Ampache\\Gui\\System\\UpdateViewAdapterTest
41 $this->configContainer = $this->mock(ConfigContainerInterface::class);
44 $this->configContainer
52 $this->configContainer->shouldReceive('get')
67 $this->configContainer->shouldReceive('get')
82 $this->configContainer->shouldReceive('get')
108 $this->configContainer->shouldReceive('getWebPath')
126 $this->configContainer->shouldReceive('getWebPath')
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Art/
H A DArtCleanup.php32 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Art\\ArtCleanup
35 ConfigContainerInterface $configContainer argument
37 $this->configContainer = $configContainer;
45 $minw = $this->configContainer->get('album_art_min_width') ?: null;
46 $maxw = $this->configContainer->get('album_art_max_width') ?: null;
47 $minh = $this->configContainer->get('album_art_min_height') ?: null;
48 $maxh = $this->configContainer->get('album_art_max_height') ?: null;
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Cli/
H A DArtCleanupCommand.php33 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Cli\\ArtCleanupCommand
38 ConfigContainerInterface $configContainer, argument
43 $this->configContainer = $configContainer;
57 …!$this->configContainer->get('album_art_min_width') && $this->configContainer->get('album_art_min_…
59 …!$this->configContainer->get('album_art_max_width') && !$this->configContainer->get('album_art_max…
H A DCacheProcessCommand.php33 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Cli\\CacheProcessCommand
36 ConfigContainerInterface $configContainer argument
40 $this->configContainer = $configContainer;
50 … if ($this->configContainer->get('cache_path') && $this->configContainer->get('cache_target')) {
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Register/
H A DAddUserAction.php49 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Register\\AddUserAction
58 ConfigContainerInterface $configContainer, argument
63 $this->configContainer = $configContainer;
73 …$this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::ALLOW_PUBLIC_REGISTRATION) === false
79 … if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::CAPTCHA_PUBLIC_REG) === true) {
88 $this->configContainer->getWebPath()
122 … if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::CAPTCHA_PUBLIC_REG) === true) {
136 … if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::USER_AGREEMENT) === true) {
186 switch ($this->configContainer->get(ConfigurationKeyEnum::AUTO_USER)) {
208 $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::ADMIN_ENABLE_REQUIRED)
[all …]
H A DShowAddUserAction.php42 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Register\\ShowAddUserAction
47 ConfigContainerInterface $configContainer, argument
50 $this->configContainer = $configContainer;
64 …$this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::ALLOW_PUBLIC_REGISTRATION) === fals…
71 … if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::CAPTCHA_PUBLIC_REG) === true) {
80 $this->configContainer->getWebPath()
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Login/
H A DDefaultAction.php53 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Login\\DefaultAction
66 ConfigContainerInterface $configContainer, argument
73 $this->configContainer = $configContainer;
84 … if ($this->configContainer->get('use_auth') && !filter_has_var(INPUT_GET, 'force_display')) {
86 if (Session::exists('interface', $_COOKIE[$this->configContainer->getSessionName()])) {
98 $this->configContainer->get('web_path')
111 if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::ACCESS_CONTROL)) {
270 if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::TRACK_USER_IP)) {
306 $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::AUTOUPDATE) &&
317 $web_path = $this->configContainer->getWebPath();
[all …]
/dports/java/java3d/java3d-1.5.2/j3d-core-utils/src/classes/share/com/sun/j3d/utils/universe/
H A DConfiguredUniverse.java107 private ConfigContainer configContainer = null; field in ConfiguredUniverse
492 configContainer = userConfig; in ConfiguredUniverse()
494 Collection c = configContainer.getViewers(); in ConfiguredUniverse()
501 c = configContainer.getViewingPlatforms(); in ConfiguredUniverse()
557 configContainer = new ConfigContainer in ConfiguredUniverse()
738 if (configContainer == null) in getNamedSensors()
741 return configContainer.getNamedSensors(); in getNamedSensors()
754 if (configContainer == null) in getNamedBehaviors()
768 return configContainer; in getConfigContainer()
788 configContainer.clear(); in cleanup()
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/WebDav/
H A DWebDavApplication.php33 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\WebDav\\WebDavApplication
38 ConfigContainerInterface $configContainer, argument
41 $this->configContainer = $configContainer;
47 if ($this->configContainer->isWebDavBackendEnabled() === false) {
57 $raw_web_path = $this->configContainer->getRawWebPath();
66 if ($this->configContainer->isAuthenticationEnabled()) {
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Authentication/
H A DAuthenticationManager.php39 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Authentication\\AuthenticationManager
42 ConfigContainerInterface $configContainer, argument
45 $this->configContainer = $configContainer;
56 foreach ($this->configContainer->get('auth_methods') as $method) {
76 if (in_array($method, $this->configContainer->get('auth_methods'))) {
122 if ((!$relogin) && $this->configContainer->get('logout_redirect')) {
123 $target = $this->configContainer->get('logout_redirect');
125 $target = $this->configContainer->get('web_path') . '/login.php';
/dports/audio/ampache/ampache-php74-5.0.0/tests/Module/Authentication/
H A DAuthenticationManagerTest.php36 private MockInterface $configContainer; variable in Ampache\\Module\\Authentication\\AuthenticationManagerTest
48 $this->configContainer = Mockery::mock(ConfigContainerInterface::class);
52 $this->configContainer,
59 $this->configContainer->shouldReceive('get')
80 $this->configContainer->shouldReceive('get')
102 $this->configContainer->shouldReceive('get')
124 $this->configContainer->shouldReceive('get')
137 $this->configContainer->shouldReceive('get')
152 $this->configContainer->shouldReceive('get')
167 $this->configContainer->shouldReceive('get')
/dports/audio/ampache/ampache-php74-5.0.0/src/Gui/Song/
H A DSongViewAdapter.php45 private ConfigContainerInterface $configContainer; variable in Ampache\\Gui\\Song\\SongViewAdapter
54 ConfigContainerInterface $configContainer, argument
59 $this->configContainer = $configContainer;
104 $this->configContainer->getWebPath(),
177 $this->configContainer->isAuthenticationEnabled() === false ||
180 $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::SOCIABLE);
187 $this->configContainer->getWebPath(),
200 $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::SHARE);
232 $this->configContainer->getWebPath(),
258 $this->configContainer->getWebPath(),
[all …]
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Util/
H A DAjaxUriRetriever.php31 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Util\\AjaxUriRetriever
34 ConfigContainerInterface $configContainer argument
36 $this->configContainer = $configContainer;
43 $this->configContainer->getWebPath()
51 $this->configContainer->getWebPath()
H A DZipHandler.php36 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Util\\ZipHandler
41 ConfigContainerInterface $configContainer, argument
44 $this->configContainer = $configContainer;
55 $this->configContainer->getTypesAllowedForZip()
68 $art = $this->configContainer->get(ConfigurationKeyEnum::ALBUM_ART_PREFERRED_FILENAME);
69 $addart = $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::ART_ZIP_ADD);
74 'comment' => $this->configContainer->get(ConfigurationKeyEnum::FILE_ZIP_COMMENT),
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Stream/
H A DBasketAction.php39 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Stream\\BasketAction
43 ConfigContainerInterface $configContainer argument
45 parent::__construct($logger, $configContainer);
46 $this->configContainer = $configContainer;
61 $this->configContainer->get(ConfigurationKeyEnum::PLAYLIST_METHOD) === 'clear'
69 $this->configContainer->get(ConfigurationKeyEnum::PLAY_TYPE)
H A DDemocraticAction.php42 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Stream\\DemocraticAction
48 ConfigContainerInterface $configContainer, argument
52 $this->configContainer = $configContainer;
55 parent::__construct($logger, $configContainer);
66 $play_type = $this->configContainer->get(ConfigurationKeyEnum::PLAY_TYPE);
67 …$stream_type = ($play_type == 'democratic') ? $this->configContainer->get(ConfigurationKeyEnum::PL…
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Podcast/
H A DConfirmDeleteAction.php42 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Podcast\\ConfirmDeleteAction
49 ConfigContainerInterface $configContainer, argument
53 $this->configContainer = $configContainer;
60 if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::PODCAST) === false) {
66 $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DEMO_MODE) === true
80 $this->configContainer->getWebPath()
89 $this->configContainer->getWebPath()
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Authorization/Check/
H A DFunctionChecker.php36 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Authorization\\Check\\FunctionChecker
41 ConfigContainerInterface $configContainer, argument
44 $this->configContainer = $configContainer;
55 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DOWNLOAD);
73 … $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::ALLOW_ZIP_DOWNLOAD) === true &&
76 return $this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DOWNLOAD);
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/User/
H A DUserStateToggler.php38 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\User\\UserStateToggler
45 ConfigContainerInterface $configContainer, argument
49 $this->configContainer = $configContainer;
58 …if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::USER_NO_EMAIL_CONFIRM) === fals…
65 $this->configContainer->get(ConfigurationKeyEnum::SITE_TITLE)
73 $this->configContainer->getWebPath()
/dports/audio/ampache/ampache-php74-5.0.0/src/Module/Application/Share/
H A DCleanAction.php42 private ConfigContainerInterface $configContainer; variable in Ampache\\Module\\Application\\Share\\CleanAction
47 ConfigContainerInterface $configContainer, argument
50 $this->configContainer = $configContainer;
56 if (!$this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::SHARE)) {
60 if ($this->configContainer->isFeatureEnabled(ConfigurationKeyEnum::DEMO_MODE)) {
69 $this->configContainer->getWebPath()
/dports/audio/ampache/ampache-php74-5.0.0/src/Config/Init/
H A DInitializationHandlerGlobals.php33 private ConfigContainerInterface $configContainer; variable in Ampache\\Config\\Init\\InitializationHandlerGlobals
36 ConfigContainerInterface $configContainer argument
38 $this->configContainer = $configContainer;
51 $charset = $this->configContainer->get('site_charset');
60 if ($this->configContainer->get('debug')) {

12345678910>>...14