Plugin Directory

Changeset 1224257


Ignore:
Timestamp:
08/18/2015 10:20:39 PM (11 years ago)
Author:
Veraxus
Message:

1.4 - minor documentation tweak, compatibility with WP 4.3 confirmed

Location:
custom-list-table-example/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • custom-list-table-example/trunk/list-table-example.php

    r843298 r1224257  
    44Plugin URI: http://www.mattvanandel.com/
    55Description: A highly documented plugin that demonstrates how to create custom List Tables using official WordPress APIs.
    6 Version: 1.3
    7 Author: Matt Van Andel
     6Version: 1.4
     7Author: Matt van Andel
    88Author URI: http://www.mattvanandel.com
    99License: GPL2
    1010*/
    11 /*  Copyright 2014  Matthew Van Andel  (email : matt@mattvanandel.com)
     11/*  Copyright 2015  Matthew Van Andel  (email : matt@mattvanandel.com)
    1212
    1313    This program is free software; you can redistribute it and/or modify
     
    8181     * for use in your list table. For this example, we're going to simplify it
    8282     * slightly and create a pre-built array. Think of this as the data that might
    83      * be returned by $wpdb->query().
     83     * be returned by $wpdb->query()
     84     *
     85     * In a real-world scenario, you would make your own custom query inside
     86     * this class' prepare_items() method.
    8487     *
    8588     * @var array
     
    127130                'rating'    => 'R',
    128131                'director'  => 'Zach Snyder'
    129             )
     132            ),
     133            array(
     134                'ID'        => 8,
     135                'title'     => '2001',
     136                'rating'    => 'R',
     137                'director'  => 'Stanley Kubrick'
     138            ),
    130139        );
    131140
  • custom-list-table-example/trunk/readme.txt

    r843298 r1224257  
    44Tags: example, table, data, WP_List_Table, admin, plugin, list table
    55Requires at least: 3.5
    6 Tested up to: 3.9
    7 Stable tag: 1.3
     6Tested up to: 4.3
     7Stable tag: 1.4
    88
    99A highly documented plugin that demonstrates how to create custom admin list-tables using official WordPress techniques.
     
    2121
    2222== Changelog ==
     23
     24= 1.4 =
     25* Minor addition to documentation.
     26* NOTE: No changes are required to maintain support with new list tables in WordPress 4.3!
    2327
    2428= 1.3 =
Note: See TracChangeset for help on using the changeset viewer.