Changeset 1760664
- Timestamp:
- 11/08/2017 10:14:48 AM (8 years ago)
- Location:
- fv-community-news/trunk
- Files:
-
- 37 edited
-
fv-community-news.php (modified) (2 diffs)
-
fvcn-admin/fvcn-admin-dashboard.php (modified) (1 diff)
-
fvcn-admin/fvcn-admin-form.php (modified) (1 diff)
-
fvcn-admin/fvcn-admin-functions.php (modified) (1 diff)
-
fvcn-admin/fvcn-admin-post-edit.php (modified) (1 diff)
-
fvcn-admin/fvcn-admin-post-moderation.php (modified) (1 diff)
-
fvcn-admin/fvcn-admin.php (modified) (1 diff)
-
fvcn-admin/js/dashboard.js (modified) (1 diff)
-
fvcn-admin/js/post-moderation.js (modified) (1 diff)
-
fvcn-includes/classes/application/Version.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Config.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Config/Abstract.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Config/Ini.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Config/Interface.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Config/WordPress.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Container.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Loader.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Loader/AutoLoader.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Loader/Autoloader/Interface.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Loader/Interface.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Registry.php (modified) (1 diff)
-
fvcn-includes/classes/library/FV/Singleton.php (modified) (1 diff)
-
fvcn-includes/fvcn-common-functions.php (modified) (1 diff)
-
fvcn-includes/fvcn-core-classes.php (modified) (1 diff)
-
fvcn-includes/fvcn-core-hooks.php (modified) (1 diff)
-
fvcn-includes/fvcn-core-install.php (modified) (1 diff)
-
fvcn-includes/fvcn-core-javascript.php (modified) (1 diff)
-
fvcn-includes/fvcn-core-sync.php (modified) (2 diffs)
-
fvcn-includes/fvcn-core-theme.php (modified) (1 diff)
-
fvcn-includes/fvcn-core-validate.php (modified) (1 diff)
-
fvcn-includes/fvcn-deprecated-functions.php (modified) (1 diff)
-
fvcn-includes/fvcn-extend-akismet.php (modified) (1 diff)
-
fvcn-includes/fvcn-post-functions.php (modified) (1 diff)
-
fvcn-includes/js/fvcn-js.js (modified) (1 diff)
-
fvcn-languages/fv-community-news.pot (modified) (2 diffs)
-
fvcn-theme/fvcn/css/fvcn-theme.css (modified) (1 diff)
-
readme.txt (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
fv-community-news/trunk/fv-community-news.php
r1760640 r1760664 3 3 /** 4 4 * Plugin Name: FV Community News 5 * Plugin URI: http ://www.frank-verhoeven.com/wordpress-plugin-fv-community-news/5 * Plugin URI: https://frankverhoeven.me/wordpress-plugin-fv-community-news/ 6 6 * Description: Allow visitors of your site to post articles. 7 7 * Version: 3.0.3 8 8 * Author: Frank Verhoeven 9 * Author URI: http ://www.frank-verhoeven.com/9 * Author URI: https://frankverhoeven.me/ 10 10 */ 11 11 … … 16 16 * FvCommunityNews 17 17 * 18 * @author Frank Verhoeven < info@frank-verhoeven.com>18 * @author Frank Verhoeven <hi@frankverhoeven.me> 19 19 */ 20 20 if (!class_exists('FvCommunityNews')) -
fv-community-news/trunk/fvcn-admin/fvcn-admin-dashboard.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Admin Dashboard 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-admin/fvcn-admin-form.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Admin Form Options 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-admin/fvcn-admin-functions.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Admin Functions 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-admin/fvcn-admin-post-edit.php
r603255 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Admin Post Edit 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-admin/fvcn-admin-post-moderation.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Admin Post Moderation 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-admin/fvcn-admin.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Admin 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-admin/js/dashboard.js
r595527 r1760664 7 7 * @package FV Community News 8 8 * @subpackage Admin Dashboard 9 * @author Frank Verhoeven < info@frank-verhoeven.com>9 * @author Frank Verhoeven <hi@frankverhoeven.me> 10 10 */ 11 11 -
fv-community-news/trunk/fvcn-admin/js/post-moderation.js
r595527 r1760664 7 7 * @package FV Community News 8 8 * @subpackage Admin Post Moderation 9 * @author Frank Verhoeven < info@frank-verhoeven.com>9 * @author Frank Verhoeven <hi@frankverhoeven.me> 10 10 */ 11 11 (function($, options) -
fv-community-news/trunk/fvcn-includes/classes/application/Version.php
r595589 r1760664 4 4 * FvCommunityNews_Version 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 final class FvCommunityNews_Version -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Config.php
r1760640 r1760664 4 4 * FV_Config 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 class FV_Config -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Config/Abstract.php
r603244 r1760664 4 4 * FV_Config_Abstract 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 abstract class FV_Config_Abstract implements Iterator -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Config/Ini.php
r1760640 r1760664 4 4 * FV_Config_Ini 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 class FV_Config_Ini implements FV_Config_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Config/Interface.php
r1760640 r1760664 4 4 * FV_Interface 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 interface FV_Config_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Config/WordPress.php
r1760640 r1760664 4 4 * FV_Config_WordPress 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 class FV_Config_WordPress implements FV_Config_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Container.php
r595589 r1760664 4 4 * FV_Container 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 abstract class FV_Container extends FV_Singleton -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Loader.php
r1760640 r1760664 4 4 * FV_Loader 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 class FV_Loader implements FV_Loader_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Loader/AutoLoader.php
r1760640 r1760664 4 4 * FV_Loader_AutoLoader 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 class FV_Loader_AutoLoader implements FV_Loader_Autoloader_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Loader/Autoloader/Interface.php
r1760640 r1760664 4 4 * FV_Loader_Autoloader_Interface 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 interface FV_Loader_Autoloader_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Loader/Interface.php
r603244 r1760664 4 4 * FV_Loader_Interface 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 interface FV_Loader_Interface -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Registry.php
r603244 r1760664 4 4 * FV_Registry 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 class FV_Registry extends FV_Singleton -
fv-community-news/trunk/fvcn-includes/classes/library/FV/Singleton.php
r595589 r1760664 4 4 * FV_Singleton 5 5 * 6 * @author Frank Verhoeven < info@frank-verhoeven.com>6 * @author Frank Verhoeven <hi@frankverhoeven.me> 7 7 */ 8 8 abstract class FV_Singleton -
fv-community-news/trunk/fvcn-includes/fvcn-common-functions.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Functions 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-core-classes.php
r1760657 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Core Classes 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-core-hooks.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Hooks 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-core-install.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Install 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-core-javascript.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Javascript 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-core-sync.php
r1760657 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Sync 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 … … 21 21 * Synchronisation 22 22 * 23 * @author Frank Verhoeven < info@frank-verhoeven.com>23 * @author Frank Verhoeven <hi@frankverhoeven.me> 24 24 */ 25 25 class FvCommunityNews_Sync 26 26 { 27 const API_REGISTER = 'http ://fvcn.frank-verhoeven.com/api/register-site/';28 const API_SUBMIT_POST = 'http ://fvcn.frank-verhoeven.com/api/submit-post/';29 const API_INC_POST_VIEW_COUNT = 'http ://fvcn.frank-verhoeven.com/api/increase-post-view-count/';30 const API_INC_POST_RATING = 'http ://fvcn.frank-verhoeven.com/api/increase-post-rating/';31 const API_DEC_POST_RATING = 'http ://fvcn.frank-verhoeven.com/api/decrease-post-rating/';27 const API_REGISTER = 'https://api.frankverhoeven.me/fvcn/1.0/register-site/'; 28 const API_SUBMIT_POST = 'https://api.frankverhoeven.me/fvcn/1.0/submit-post/'; 29 const API_INC_POST_VIEW_COUNT = 'https://api.frankverhoeven.me/fvcn/1.0/increase-post-view-count/'; 30 const API_INC_POST_RATING = 'https://api.frankverhoeven.me/fvcn/1.0/increase-post-rating/'; 31 const API_DEC_POST_RATING = 'https://api.frankverhoeven.me/fvcn/1.0/decrease-post-rating/'; 32 32 33 33 /** -
fv-community-news/trunk/fvcn-includes/fvcn-core-theme.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Theme 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-core-validate.php
r1760657 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Validate 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-deprecated-functions.php
r595527 r1760664 12 12 * @package FV Community News 13 13 * @subpackage Deprecated Functions 14 * @author Frank Verhoeven < info@frank-verhoeven.com>14 * @author Frank Verhoeven <hi@frankverhoeven.me> 15 15 */ 16 16 -
fv-community-news/trunk/fvcn-includes/fvcn-extend-akismet.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Akismet 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/fvcn-post-functions.php
r595527 r1760664 8 8 * @package FV Community News 9 9 * @subpackage Functions 10 * @author Frank Verhoeven < info@frank-verhoeven.com>10 * @author Frank Verhoeven <hi@frankverhoeven.me> 11 11 */ 12 12 -
fv-community-news/trunk/fvcn-includes/js/fvcn-js.js
r595527 r1760664 6 6 * @package FV Community News 7 7 * @subpackage Javascript 8 * @author Frank Verhoeven < info@frank-verhoeven.com>8 * @author Frank Verhoeven <hi@frankverhoeven.me> 9 9 */ 10 10 -
fv-community-news/trunk/fvcn-languages/fv-community-news.pot
r595527 r1760664 679 679 680 680 #. Plugin URI of the plugin/theme 681 msgid "http ://www.frank-verhoeven.com/wordpress-plugin-fv-community-news/"681 msgid "https://frankverhoeven.me/wordpress-plugin-fv-community-news/" 682 682 msgstr "" 683 683 … … 691 691 692 692 #. Author URI of the plugin/theme 693 msgid "http ://www.frank-verhoeven.com/"694 msgstr "" 693 msgid "https://frankverhoeven.me/" 694 msgstr "" -
fv-community-news/trunk/fvcn-theme/fvcn/css/fvcn-theme.css
r595527 r1760664 5 5 * 6 6 * @version 20120716 7 * @author Frank Verhoeven < info@frank-verhoeven.com>7 * @author Frank Verhoeven <hi@frankverhoeven.me> 8 8 */ 9 9 -
fv-community-news/trunk/readme.txt
r1760640 r1760664 2 2 3 3 Contributors: frankverhoeven 4 Donate link: https://www.paypal. com/cgi-bin/webscr?cmd=_donations&business=SB62B7H867Y4C&lc=US&item_name=Frank%20Verhoeven¤cy_code=USD&bn=PP%2dDonationsBF%3abtn_donate_LG%2egif%3aNonHosted4 Donate link: https://www.paypal.me/FrankVerhoeven 5 5 Tags: Community News, Community, News, Widget, Custom Post, Custom Posting, Post, Form, Akismet, Ajax 6 6 Requires at least: 3.3 7 Tested up to: 3.47 Tested up to: 4.8.3 8 8 Stable tag: 3.0.2 9 9 … … 94 94 95 95 Version 2 and older are not compatible with version 3 and later. To convert your posts 96 to work with the new version, download the [FV Community News Upgrader](http ://www.frank-verhoeven.com/fv-community-news-upgrader/ "FV Community News Upgrader").96 to work with the new version, download the [FV Community News Upgrader](https://frankverhoeven.me/fv-community-news-upgrader/ "FV Community News Upgrader"). 97 97 98 98 If you're still using version 1.x, you will have to update to version 2 first.
Note: See TracChangeset
for help on using the changeset viewer.