[ Index ]

PHP Cross Reference of phpBB-3.3.11-deutsch

title

Body

[close]

/vendor/s9e/text-formatter/src/Configurator/TemplateChecks/ -> RestrictFlashNetworking.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 RestrictFlashNetworking extends AbstractFlashRestriction
  11  {
  12      /**
  13      * @var string Default AllowNetworking setting
  14      * @link http://help.adobe.com/en_US/ActionScript/3.0_ProgrammingAS3/WS1EFE2EDA-026D-4d14-864E-79DFD56F87C6.html
  15      */
  16      public $defaultSetting = 'all';
  17  
  18      /**
  19      * {@inheritdoc}
  20      */
  21      protected $settingName = 'allowNetworking';
  22  
  23      /**
  24      * @var array Valid AllowNetworking values
  25      */
  26      protected $settings = [
  27          'all'      => 3,
  28          'internal' => 2,
  29          'none'     => 1
  30      ];
  31  }


Generated: Sat Nov 4 14:26:03 2023 Cross-referenced by PHPXref 0.7.1