Plugin Directory

Changeset 1258628


Ignore:
Timestamp:
10/03/2015 04:35:12 AM (11 years ago)
Author:
oxynotes
Message:

1.3.1細かなバグの修正

Location:
step-by-step-social-count-cache/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • step-by-step-social-count-cache/trunk/readme.txt

    r1257486 r1258628  
    55Requires at least: 4.2.4
    66Tested up to: 4.3.1
    7 Stable tag: 1.3
     7Stable tag: 1.3.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • step-by-step-social-count-cache/trunk/sbs-social-count-cache.php

    r1257531 r1258628  
    44Plugin URI: https://wordpress.org/plugins/step-by-step-social-count-cache/
    55Description: ソーシャルブックマークのカウントをキャッシュするプラグイン
    6 Version: 1.3
     6Version: 1.3.1
    77Author: oxynotes
    88Author URI: http://oxynotes.com
     
    100100
    101101    // インストール時の初期設定
    102     public function activate() {
     102    public static function activate() {
    103103
    104104        // カウントを保存するためのテーブルを作る(既にテーブルがある場合は作らない)
     
    419419     * APCuだとinfoがkeyに変更されているため、APCのみにあるtypeで条件分岐
    420420     */
    421     function delete_apc_cache() {
     421    private static function delete_apc_cache() {
    422422        //すべてのユーザキャッシュを取得する
    423423        if ( function_exists( 'apc_store' ) && ini_get( 'apc.enabled' ) ) { // apcモジュール読み込まれており、更に有効かどうか調べる
  • step-by-step-social-count-cache/trunk/views/options.php

    r1257536 r1258628  
    7272<hr>
    7373
    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>
    7777
    7878<table class="form-table">
     
    8383        <fieldset>
    8484            <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">
    8686            </label>
    8787        </fieldset>
Note: See TracChangeset for help on using the changeset viewer.