Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
RestrictFlashScriptAccess.php
01 <?php
02
03 /**
04 * @package s9e\TextFormatter
05 * @copyright Copyright (c) 2010-2022 The s9e authors
06 * @license http://www.opensource.org/licenses/mit-license.php The MIT License
07 */
08 namespace s9e\TextFormatter\Configurator\TemplateChecks;
09
10 class RestrictFlashScriptAccess extends AbstractFlashRestriction
11 {
12 /**
13 * @var string Default AllowScriptAccess setting
14 * @link http://helpx.adobe.com/flash-player/kb/changes-allowscriptaccess-default-flash-player.html
15 */
16 public $defaultSetting = 'sameDomain';
17
18 /**
19 * {@inheritdoc}
20 */
21 protected $settingName = 'allowScriptAccess';
22
23 /**
24 * @var array Valid AllowScriptAccess values
25 */
26 protected $settings = [
27 'always' => 3,
28 'samedomain' => 2,
29 'never' => 1
30 ];
31 }