[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

/vendor/s9e/text-formatter/src/Configurator/TemplateChecks/ -> RestrictFlashScriptAccess.php (source)

   1  <?php
   2  
   3  /**
   4  * @package   s9e\TextFormatter
   5  * @copyright Copyright (c) 2010-2022 The s9e authors
   6  * @license   http://www.opensource.org/licenses/mit-license.php The MIT License
   7  */
   8  namespace s9e\TextFormatter\Configurator\TemplateChecks;
   9  
  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  }


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1