. /** * Media filter post install hook * * @package filter * @subpackage mediaplugin * @copyright 2010 Petr Skoda {@link http://skodak.org} * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later */ function xmldb_filter_mediaplugin_install() { global $CFG; //enable by default in new installs and upgrades (because we did not have version.php before) // but only if insecure swf embedding is off - we definitely do not want to open security hopes on existing sites if (empty($CFG->filter_mediaplugin_enable_swf)) { filter_set_global_state('filter/mediaplugin', TEXTFILTER_ON); } }