Changeset 2644705
- Timestamp:
- 12/15/2021 07:31:25 PM (4 years ago)
- Location:
- adwire/trunk
- Files:
-
- 3 edited
-
adwire.php (modified) (1 diff)
-
includes/AdwirePluginSettings.class.inc (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
adwire/trunk/adwire.php
r2638187 r2644705 12 12 * Plugin URI: https://www.adwire.dev/wordpress-plugin 13 13 * Description: An easy way to monetize embedded YouTube videos on your website. 14 * Version: 0.1. 414 * Version: 0.1.5 15 15 * Requires at least: 5.0 16 16 * Requires PHP: 7.4 -
adwire/trunk/includes/AdwirePluginSettings.class.inc
r2638187 r2644705 4 4 5 5 namespace Adwire\WordPress\Plugins\AdwirePlugin; 6 7 use Exception; 6 8 7 9 use Adwire\WordPress\Plugins\AdwirePlugin; … … 259 261 public static function run(): void { 260 262 263 if( empty( AdwirePlugin::$file ) ) { 264 throw new Exception( 'AdwirePlugin::$file variable is not set' ); 265 } 266 261 267 static::registerActions(); 262 268 static::registerFilters(); -
adwire/trunk/readme.txt
r2638187 r2644705 5 5 Requires at least: 5.0 6 6 Tested up to: 5.8.2 7 Stable tag: 0.1. 47 Stable tag: 0.1.5 8 8 Requires PHP: 7.4 9 9 License: GPLv2 or later … … 16 16 An easy way to monetize embedded YouTube videos on your website. 17 17 18 Adwire temporarily removes YouTube iframe embed and replaces it with linear video advertisement - preroll,according supplied AdTag. When linear video advertisement is finished, YouTube iframe embed is restored and automatically played for seamless user experience.18 Adwire temporarily removes YouTube iframe embed and replaces it with linear video advertisement according supplied AdTag. When linear video advertisement is finished, YouTube iframe embed is restored and automatically played for seamless user experience. 19 19 20 20 Adwire uses third-party service for handling advertisements - [Google IMA SDK](https://developers.google.com/interactive-media-ads), therefore you are obliged to read and agree with: … … 39 39 = Where to get AdTag URL = 40 40 41 You can get it from your ad network/provider, e.g. [AdSense for video (AFV)](https://support.google.com/adsense/answer/6054303) .41 You can get it from your ad network/provider, e.g. [AdSense for video (AFV)](https://support.google.com/adsense/answer/6054303) or create your own according to [VAST](https://iabtechlab.com/standards/vast/) or other supported format documentation. 42 42 43 43 == Screenshots == … … 46 46 47 47 == Changelog == 48 49 = 0.1.5 = 50 * Added exception for case of missing required variable. 51 * Updated readme. 48 52 49 53 = 0.1.4 =
Note: See TracChangeset
for help on using the changeset viewer.