www.gusucode.com > Flarum中文优化论坛PHP源码程序 > FlarumChina-master/vendor/s9e/text-formatter/src/Configurator/TemplateChecks/RestrictFlashNetworking.php

    <?php

/*
* @package   s9e\TextFormatter
* @copyright Copyright (c) 2010-2016 The s9e Authors
* @license   http://www.opensource.org/licenses/mit-license.php The MIT License
*/
namespace s9e\TextFormatter\Configurator\TemplateChecks;
class RestrictFlashNetworking extends AbstractFlashRestriction
{
	public $defaultSetting = 'all';
	protected $settingName = 'allowNetworking';
	protected $settings = array(
		'all'      => 3,
		'internal' => 2,
		'none'     => 1
	);
}