Create New Item
Item Type
File
Folder
Item Name
Search file in folder and subfolders...
Are you sure want to rename?
posthelic
/
wp-content
/
plugins
/
fv-wordpress-flowplayer
:
flowplayer.php
Advanced Search
Upload
New Item
Settings
Back
Back Up
Advanced Editor
Save
<?php /* Plugin Name: FV Player Plugin URI: http://foliovision.com/wordpress/plugins/fv-wordpress-flowplayer Description: Formerly FV WordPress Flowplayer. Supports MP4, HLS, MPEG-DASH, WebM and OGV. Advanced features such as overlay ads or popups. Uses Flowplayer 7.2.7. Version: 7.1.14.727 Author URI: http://foliovision.com/ License: GPL-3.0 License URI: http://www.gnu.org/licenses/gpl-3.0.txt */ /* FV Player - HTML5 video player with Flash fallback Copyright (C) 2018 Foliovision This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>. */ $fv_wp_flowplayer_ver = '7.1.14.727'; $fv_wp_flowplayer_core_ver = '7.2.7.1'; include( dirname( __FILE__ ) . '/includes/extra-functions.php' ); if( file_exists( dirname( __FILE__ ) . '/includes/module.php' ) ) { include( dirname( __FILE__ ) . '/includes/module.php' ); } include( dirname( __FILE__ ) . '/models/checker.php' ); $FV_Player_Checker = new FV_Player_Checker(); include_once(dirname( __FILE__ ) . '/models/flowplayer.php'); include_once(dirname( __FILE__ ) . '/models/flowplayer-frontend.php'); include_once(dirname( __FILE__ ) . '/models/lightbox.php'); include_once(dirname( __FILE__ ) . '/models/facebook-share.php'); include_once(dirname( __FILE__ ) . '/models/custom-videos.php'); include_once(dirname( __FILE__ ) . '/models/seo.php'); include_once(dirname( __FILE__ ) . '/models/subtitles.php'); include_once(dirname( __FILE__ ) . '/models/users-ultra-pro.php'); include_once(dirname( __FILE__ ) . '/models/widget.php'); include_once(dirname( __FILE__ ) . '/models/conversion.php'); include_once(dirname( __FILE__ ) . '/models/email-subscription.php'); include_once(dirname( __FILE__ ) . '/models/video-intelligence.php'); include_once(dirname( __FILE__ ) . '/models/player-position-save.php'); include_once(dirname( __FILE__ ) . '/models/xml-video-sitemap.php'); global $fv_fp; $fv_fp = new flowplayer_frontend(); if( is_admin() ) { include( dirname( __FILE__ ) . '/controller/backend.php' ); include( dirname( __FILE__ ) . '/controller/editor.php' ); include( dirname( __FILE__ ) . '/controller/settings.php' ); register_deactivation_hook( __FILE__, 'flowplayer_deactivate' ); } include( dirname( __FILE__ ) . '/controller/frontend.php' ); require_once( dirname( __FILE__ ) . '/controller/shortcodes.php');