Changeset 1258628
- Timestamp:
- 10/03/2015 04:35:12 AM (11 years ago)
- Location:
- step-by-step-social-count-cache/trunk
- Files:
-
- 3 edited
-
readme.txt (modified) (1 diff)
-
sbs-social-count-cache.php (modified) (3 diffs)
-
views/options.php (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
step-by-step-social-count-cache/trunk/readme.txt
r1257486 r1258628 5 5 Requires at least: 4.2.4 6 6 Tested up to: 4.3.1 7 Stable tag: 1.3 7 Stable tag: 1.3.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
step-by-step-social-count-cache/trunk/sbs-social-count-cache.php
r1257531 r1258628 4 4 Plugin URI: https://wordpress.org/plugins/step-by-step-social-count-cache/ 5 5 Description: ソーシャルブックマークのカウントをキャッシュするプラグイン 6 Version: 1.3 6 Version: 1.3.1 7 7 Author: oxynotes 8 8 Author URI: http://oxynotes.com … … 100 100 101 101 // インストール時の初期設定 102 public function activate() {102 public static function activate() { 103 103 104 104 // カウントを保存するためのテーブルを作る(既にテーブルがある場合は作らない) … … 419 419 * APCuだとinfoがkeyに変更されているため、APCのみにあるtypeで条件分岐 420 420 */ 421 function delete_apc_cache() {421 private static function delete_apc_cache() { 422 422 //すべてのユーザキャッシュを取得する 423 423 if ( function_exists( 'apc_store' ) && ini_get( 'apc.enabled' ) ) { // apcモジュール読み込まれており、更に有効かどうか調べる -
step-by-step-social-count-cache/trunk/views/options.php
r1257536 r1258628 72 72 <hr> 73 73 74 <h3><?php _e('Feedlyでカウントする フィードのURL', 'sbs_social_count_cache'); ?></h3>75 76 <p><?php _e(' 特定のフィードをカウントしたい場合はこちらでURLを入力してください。例) http://example.com/?feed=rss2 未入力の場合はWordPressで自動的に生成されるRSS2のフィードを使用します。', 'sbs_social_count_cache'); ?></p>74 <h3><?php _e('FeedlyでカウントするRSSのURL', 'sbs_social_count_cache'); ?></h3> 75 76 <p><?php _e('カスタムのフィードを使用している場合はこちらでURLを入力してください。デフォルトはWordPressで自動的に生成されるRSS2のフィードを使用します。', 'sbs_social_count_cache'); ?></p> 77 77 78 78 <table class="form-table"> … … 83 83 <fieldset> 84 84 <label> 85 <input type="text" name="sbs_active_sns[ rss_url]" value="<?php if(isset($this->sbs_active_sns['rss_url'])) echo esc_html( $this->sbs_active_sns['rss_url'] ); ?>" size="45">85 <input type="text" name="sbs_active_sns['rss_url']" value="<?php if(isset($this->sbs_active_sns['rss_url'])) echo esc_html( $this->sbs_active_sns['rss_url'] ); ?>" size="45"> 86 86 </label> 87 87 </fieldset>
Note: See TracChangeset
for help on using the changeset viewer.