Plugin Directory

Changeset 989089


Ignore:
Timestamp:
09/13/2014 01:36:33 PM (11 years ago)
Author:
djtidau
Message:

Change naming and add scheduling options

Location:
sm2wp-google-minimal
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sm2wp-google-minimal/tags/1.1.3/sm2wp.php

    r989017 r989089  
    11<?php
    22/**
    3  * SM2WP / Google+ / Minimal
    4  *
    5  * @package   SM2WP_GooglePlus_Minimal
    6  * @author    Daniel Treadwell <[email protected]>
    7  * @license   GPL-2.0+
    8  * @link      http://minimali.se
    9  * @copyright 2014 Daniel Treadwell
    10  *
    11  * @wordpress-plugin
    12  * Plugin Name:     SM2WP / Google+ / Minimal
     3 * Plugin Name:     Social Media 2 WordPress for Google+ / Minimal
    134 * Plugin URI:      http://sm2wp.com
    145 * Description:     Import your Google+ Posts to your WordPress Blog
  • sm2wp-google-minimal/tags/1.1.3/views/admin.php

    r989017 r989089  
    100100
    101101    <p class='pro-invitation'>
    102         SM2WP / Google+ / Complete supports <u>multiple profiles</u> and <u>G+ pages</u>, <u>deeper post history</u>, <u>filter imports by hashtags</u>, <bufeature images</u> and more!  <a href='http://sm2wp.com/'>Click here to upgrade</a>.
     102        SM2WP / Google+ / Complete supports <u>multiple profiles</u> and <u>G+ pages</u>, <u>deeper post history</u>, <u>filter imports by hashtags</u>, <u>feature images</u> and more!  <a href='http://sm2wp.com/'>Click here to upgrade</a>.
    103103    </p>
    104104
     
    297297        <span style='display:block'>Limit longest edge of image to this size (pixels)</span>
    298298    </li>
     299    <li>
     300        <b>Import Schedule</b>
     301        <select name='gfw_schedule' style='float:right;margin-top:6px;'>
     302        <?php foreach (wp_get_schedules() as $key => $desc) { ?>
     303        <option value='<?php echo $key?>' <?php echo get_option('gfw_schedule') == $key ? 'selected' : ''?>><?php echo $desc['display'] ?></option>
     304        <?php } ?>
     305        </select>
     306        <span style='display:block'>How often to run the import process</span>
     307    </li>
     308
    299309
    300310</ul>
  • sm2wp-google-minimal/trunk/sm2wp.php

    r989017 r989089  
    11<?php
    22/**
    3  * SM2WP / Google+ / Minimal
    4  *
    5  * @package   SM2WP_GooglePlus_Minimal
    6  * @author    Daniel Treadwell <[email protected]>
    7  * @license   GPL-2.0+
    8  * @link      http://minimali.se
    9  * @copyright 2014 Daniel Treadwell
    10  *
    11  * @wordpress-plugin
    12  * Plugin Name:     SM2WP / Google+ / Minimal
     3 * Plugin Name:     Social Media 2 WordPress for Google+ / Minimal
    134 * Plugin URI:      http://sm2wp.com
    145 * Description:     Import your Google+ Posts to your WordPress Blog
  • sm2wp-google-minimal/trunk/views/admin.php

    r989017 r989089  
    100100
    101101    <p class='pro-invitation'>
    102         SM2WP / Google+ / Complete supports <u>multiple profiles</u> and <u>G+ pages</u>, <u>deeper post history</u>, <u>filter imports by hashtags</u>, <bufeature images</u> and more!  <a href='http://sm2wp.com/'>Click here to upgrade</a>.
     102        SM2WP / Google+ / Complete supports <u>multiple profiles</u> and <u>G+ pages</u>, <u>deeper post history</u>, <u>filter imports by hashtags</u>, <u>feature images</u> and more!  <a href='http://sm2wp.com/'>Click here to upgrade</a>.
    103103    </p>
    104104
     
    297297        <span style='display:block'>Limit longest edge of image to this size (pixels)</span>
    298298    </li>
     299    <li>
     300        <b>Import Schedule</b>
     301        <select name='gfw_schedule' style='float:right;margin-top:6px;'>
     302        <?php foreach (wp_get_schedules() as $key => $desc) { ?>
     303        <option value='<?php echo $key?>' <?php echo get_option('gfw_schedule') == $key ? 'selected' : ''?>><?php echo $desc['display'] ?></option>
     304        <?php } ?>
     305        </select>
     306        <span style='display:block'>How often to run the import process</span>
     307    </li>
     308
    299309
    300310</ul>
Note: See TracChangeset for help on using the changeset viewer.