Plugin Directory

Changeset 2548759

Timestamp:
06/16/2021 07:49:52 AM (3 years ago)
Author:
ada2go
Message:

Update to Version 1.1

Location:
ada2go-mark-your-old-articles/trunk
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • ada2go-mark-your-old-articles/trunk/ada2go-mark-old-posts.php

    r2543663 r2548759  
    33Plugin Name: Ada2go - Mark your old Articles
    44Description: (DE) Mit diesem Plugin werden alte Beiträge automatisch mit einem Hinweis versehen. (EN) This plugin marks posts that have not been updated for a long time. In the standard settings it is 365 days. It is not about the time of publication, its calculated by the time of the last update. Go to the Settings to change the Time by Secounds. A list of all marked posts is displayed in the settings.
    5 Version: 1.0
     5Version: 1.
    66Author: Heiko von ada2go.de
    77Author URI: https://ada2go.de/
     
    108108*/
    109109
    110 /**
    111 function a2g_mop_deactivate() {
     110
     111function a2g_mop_() {
    112112        global $wpdb;
    113113        $table_name = $wpdb->prefix . 'markoldposts_settings';
     
    115115        $wpdb->query($sql);
    116116}
    117 */
    118117
    119118/**
     
    159158// hook on activation
    160159register_activation_hook( __FILE__, 'a2g_mop_activate' );
    161 
    162 // hook on deactivation - is deactivated!
    163 #register_deactivation_hook( __FILE__, 'a2g_mop_deactivate' );
     160register_uninstall_hook( __FILE__, 'a2g_mop_uninstall' );
  • ada2go-mark-your-old-articles/trunk/readme.txt

    r2543663 r2548759  
    11=== Ada2go - Mark your old Articles ===
    22Contributors: ada2go
    3 Donate link: https://ada2go.de
     3Donate link: https://ada2go.de
    44Tags: hinweis,hint,old post,old article,mark post,markierung
    55Requires at least: 4.7
    66Tested up to: 5.7.2
    7 Stable tag: 1.0
     7Stable tag: 1.
    88Requires PHP: 7.0
    99License: GPLv3 or later
     
    3434= What Features still coming? =
    3535
    36 * In the list of all marked posts it will be possible to update all posts to hide the message by one click. The button is already exists and disabled. Have you eny other wishes, contact me!
     36* wishes, contact me!
    3737
    3838== Screenshots ==
     
    4444== Changelog ==
    4545
     46
     47
     48
     49
     50
     51
     52
     53
    4654= 1.0 =
    4755* Released version.
     
    4957== Upgrade Notice ==
    5058
     59
     60
     61
     62
     63
     64
     65
     66
    5167= 1.0 =
    5268First release.
  • ada2go-mark-your-old-articles/trunk/settings_page.php

    r2543663 r2548759  
    2424);
    2525    echo __('<div class="updated">
    26     <p>'.__('Erldigt! Alles gespeichert!', 'ada2go-mark-old-posts').'</p>
     26    <p>'.__('Erldigt! Alles gespeichert!', 'ada2go-mark-old-posts').'</p>
    2727  </div>');
    2828} // END if($_POST)
     
    4242<h1><?php echo esc_html_e('Mark Older Posts - Einstellungen', 'ada2go-mark-old-posts'); ?></h1>
    4343<form action="?page=a2g_mop_settings" method="post">
    44 <h2><?php echo esc_html_e('Wieviele Sekunden sollen eingestellt werden?', 'ada2go-mark-old-posts'); ?></h2>
     44<h2><?php echo esc_html_e('Wieviele Sekunden sollen eingestellt werden?', 'ada2go-mark-old-posts'); ?></h2>
    4545    <p><?php echo esc_html_e('Trage hier die Sekundenzahl ein, die genutzt werden soll. Verzichte auf Komma, Leerzeichen oder Punkt.', 'ada2go-mark-old-posts'); ?>
    4646        <br><?php echo esc_html_e('Beispiel:', 'ada2go-mark-old-posts'); ?><br>
     
    7373<hr>
    7474<h2><?php echo esc_html_e('Liste aller markierten Beitr&auml;ge', 'ada2go-mark-old-posts'); ?></h2>
    75 <p><input type="submit" value="<?php echo esc_html_e('Alle Beitr&auml;ge auf einmal aktualisieren!', 'ada2go-mark-old-posts'); ?>" class="button" disabled></p>
    7675    <p>
    7776    <?php echo esc_html_e('Damit du nicht lange rumsuchen musst, hier eine Liste aller Beitr&auml;ge, die durch das Plugin markiert wurden:', 'ada2go-mark-old-posts'); ?>
Note: See TracChangeset for help on using the changeset viewer.