Plugin Directory

Changeset 649150


Ignore:
Timestamp:
01/07/2013 12:01:26 PM (13 years ago)
Author:
skall
Message:

Update Changes for uninstallation

Location:
trivian-widget-wp/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trivian-widget-wp/trunk/README.txt

    r649140 r649150  
    44Requires at least: 3.0.1
    55Tested up to: 3.5
    6 Stable tag: 1.0.1
     6Stable tag: 1.0.2
    77License: GPLv2
    88License URI: http://www.trivian.com/tos
     
    3535== Changelog ==
    3636
     37= 1.0.2 =
     38* Fix uninstall script for cleaning up used parameters.
     39* Version based changes.
     40* Screenshots and brief guided added.
     41
    3742= 1.0.1 =
    3843* Development just started, waiting for reviews and bugs.
  • trivian-widget-wp/trunk/uninstall.php

    r649146 r649150  
    11<?php
    22
     3//  remove all stored options on uninstall the plugin
     4$availableWPOptions = array(
     5  'trivian_widget',
     6);
     7
     8foreach($availableWPOptions as $option) {
     9  delete_option($option);
     10}
Note: See TracChangeset for help on using the changeset viewer.