Changeset 984921
- Timestamp:
- 09/09/2014 03:08:20 AM (12 years ago)
- Location:
- wp-facebook-portal/trunk
- Files:
-
- 6 edited
-
core/class-common.php (modified) (1 diff)
-
core/class-cron.php (modified) (1 diff)
-
core/controller-admin.php (modified) (1 diff)
-
libraries/facebook.php (modified) (2 diffs)
-
plugin.php (modified) (2 diffs)
-
readme.txt (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
-
wp-facebook-portal/trunk/core/class-common.php
r963195 r984921 3 3 * Common class 4 4 * 5 * @copyright Copyright (c) MKT-SYSTEM6 * @author MKT-SYSTEM5 * @copyright Copyright (c) Yoshika 6 * @author Yoshika (@rnsk) 7 7 * @package FacebookPortal 8 8 * @license GPL2 -
wp-facebook-portal/trunk/core/class-cron.php
r963195 r984921 3 3 * Cron class 4 4 * 5 * @copyright Copyright (c) MKT-SYSTEM6 * @author MKT-SYSTEM5 * @copyright Copyright (c) Yoshika 6 * @author Yoshika (@rnsk) 7 7 * @package FacebookPortal 8 8 * @license GPL2 -
wp-facebook-portal/trunk/core/controller-admin.php
r963195 r984921 3 3 * Admin Controller 4 4 * 5 * @copyright Copyright (c) MKT-SYSTEM6 * @author MKT-SYSTEM5 * @copyright Copyright (c) Yoshika 6 * @author Yoshika (@rnsk) 7 7 * @package FacebookPortal 8 8 * @license GPL2 -
wp-facebook-portal/trunk/libraries/facebook.php
r962861 r984921 37 37 */ 38 38 public $requestUrl = 'https://graph.facebook.com/v2.0'; 39 40 /** 41 * Facebook single post URL. 42 * 43 * @var string 44 */ 45 public $postUrlFormat = 'https://www.facebook.com/%d/posts/%d'; 46 47 /** 48 * Delimiter of the post ID and page ID 49 * 50 * @var string 51 */ 52 public $idDelimiter = '_'; 39 53 40 54 /** … … 199 213 continue; 200 214 } 201 $response['data'][$i]['permalink'] = $this->linkUrl . DS . $response['data'][$i]['id'];215 $response['data'][$i]['permalink'] = vsprintf($this->postUrlFormat, explode($this->idDelimiter, $response['data'][$i]['id'])); 202 216 $_data[] = $response['data'][$i]; 203 217 } -
wp-facebook-portal/trunk/plugin.php
r963195 r984921 2 2 /* 3 3 Plugin Name: WP Facebook Portal 4 Plugin URI: http:// mkt-system.jp/oss/wp-facebook-portal4 Plugin URI: http://wordpress.org/plugins/wp-facebook-portal/ 5 5 Description: Import the posts of Facebook page. 6 Author: MKT-SYSTEM7 Author URI: http:// mkt-system.jp/8 Version: 2. 16 Author: Yoshika (@rnsk) 7 Author URI: http://rnsk.net/ 8 Version: 2.2 9 9 License: GPL2 10 10 License URI: license.txt … … 26 26 * Facebook ページのフィードをインポート(複数ページ対応) 27 27 * 28 * @copyright Copyright (c) MKT-SYSTEM29 * @author MKT-SYSTEM28 * @copyright Copyright (c) Yoshika 29 * @author Yoshika (@rnsk) 30 30 * @package FacebookPortal 31 31 * @license GPL2 -
wp-facebook-portal/trunk/readme.txt
r963195 r984921 3 3 Tags: Facebook, Facebook page, portal, feed 4 4 Requires at least: 3.5.1 5 Tested up to: 3.9.26 Stable tag: 2. 15 Tested up to: 4.0 6 Stable tag: 2.2 7 7 License: GPLv2 or later 8 8 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 26 26 27 27 WP-Facebook-Portal の使い方 28 https://www.facebook.com/notes/ mkt-wp-plugins/56441663026021428 https://www.facebook.com/notes/WordPress-Plugins/564416630260214 29 29 30 30 Facebook ページID の確認方法 31 https://www.facebook.com/notes/ mkt-wp-plugins/56444371025750631 https://www.facebook.com/notes/WordPress-Plugins/564443710257506 32 32 33 33 デモサイト … … 37 37 アップデート情報や対応状況、機能追加予定なども配信しているのでぜひ『いいね!』を押してください。 38 38 39 https://www.facebook.com/pages/ MKT-WP-Plugins/56327753704079039 https://www.facebook.com/pages/WordPress-Plugins/563277537040790 40 40 41 41 == Installation == … … 56 56 57 57 == Changelog == 58 59 2.2 60 写真投稿の場合、記事へのリンクがエラーになる不具合を修正 61 WordPress 4.0 に対応 58 62 59 63 2.1
Note: See TracChangeset
for help on using the changeset viewer.