Plugin Directory

Changeset 1228203


Ignore:
Timestamp:
08/22/2015 10:19:25 PM (11 years ago)
Author:
lynton_reed
Message:

minor update to remove warning " headers already sent " on the admin workflows and templates list tabs.
added stub index file to jQuery-file-Upload/js directory.
committing changes for 3.0.1. release.

Location:
work-the-flow-file-upload/trunk
Files:
1 added
5 edited

Legend:

Unmodified
Added
Removed
  • work-the-flow-file-upload/trunk/README.txt

    r1206638 r1228203  
    44Tags: file upload, upload, workflow, html5, image, gallery
    55Requires at least: 3.5.1
    6 Tested up to: 4.2
    7 Stable tag: 3.0.0
     6Tested up to: 4.3
     7Stable tag: 3.0.1
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
  • work-the-flow-file-upload/trunk/admin/class-wtf-fu-admin.php

    r1206638 r1228203  
    288288
    289289            case 'workflows' :
    290                 $tabs[] = array('id' => 'overview', 'title' => __('Overview'), 'content' => wtf_fu_get_admininterface_info('Workflows'));
    291                
    292                 // also set the column widths for the list page here
    293                 echo '<style type="text/css">';
    294                 echo '.wp-list-table .column-name { width: 25%; }';
    295                 echo '.wp-list-table .column-id { width: 5%; }';
    296                 echo '.wp-list-table .column-notes { width: 30%; }';
    297                 echo '.wp-list-table .column-description { width: 20%; }';
    298                 echo '.wp-list-table .column-user_details { width: 20%; }';
    299                 echo '</style>';               
    300                
     290                $tabs[] = array('id' => 'overview', 'title' => __('Overview'), 'content' => wtf_fu_get_admininterface_info('Workflows'));               
    301291                break;
    302292
     
    304294            case 'workflows-workflow-options' :
    305295                $tabs[] = array('id' => 'overview', 'title' => __('Overview'), 'content' => wtf_fu_get_admininterface_info('Workflow Options'));
    306                 $tabs[] = array('id' => 'shortcuts', 'title' => __('Shortcuts'), 'content' => wtf_fu_get_shortcuts_table());
    307                
    308 
    309                
     296                $tabs[] = array('id' => 'shortcuts', 'title' => __('Shortcuts'), 'content' => wtf_fu_get_shortcuts_table());               
    310297                break;
    311298
    312299            case 'workflows-workflow-stage-options' :
    313300                $tabs[] = array('id' => 'overview', 'title' => __('Overview'), 'content' => wtf_fu_get_admininterface_info('Workflow Stage Options'));
    314                 $tabs[] = array('id' => 'shortcuts', 'title' => __('Shortcuts'), 'content' => wtf_fu_get_shortcuts_table());
    315                
     301                $tabs[] = array('id' => 'shortcuts', 'title' => __('Shortcuts'), 'content' => wtf_fu_get_shortcuts_table());               
    316302                break;
    317303
     
    329315                $tabs[] = array('id' => 'templates', 'title' => __('Templates'), 'content' => wtf_fu_get_general_info('Templates'));
    330316                $tabs[] = array('id' => 'shortcuts', 'title' => __('Shortcuts'), 'content' => wtf_fu_get_shortcuts_table());
    331                
    332                 // templates list table
    333                 echo '<style type="text/css">';
    334                 echo '.wp-list-table .column-name { width: 25%; }';
    335                 echo '.wp-list-table .column-id { width: 5%; }';
    336                 echo '.wp-list-table .column-type { width: 8%; }';
    337                 echo '.wp-list-table .column-description { width: 62%; }';
    338                 echo '</style>';                   
     317                                   
    339318                break;
    340319
  • work-the-flow-file-upload/trunk/admin/views/admin-workflows.php

    r954893 r1228203  
    4545$workflowListTable->prepare_items();
    4646?>
     47
     48<style type="text/css">
     49.wp-list-table .column-name { width: 25%; }
     50.wp-list-table .column-id { width: 5%; }
     51.wp-list-table .column-notes { width: 30%; }
     52.wp-list-table .column-description { width: 20%; }
     53.wp-list-table .column-user_details { width: 20%; }
     54</style> 
     55
    4756<div class="wrap">
    4857    <div id="icon-users" class="icon32"><br/></div>
  • work-the-flow-file-upload/trunk/public/class-wtf-fu.php

    r1206638 r1228203  
    4444     * @var     string
    4545     */
    46     const VERSION = '3.0.0';
     46    const VERSION = '3.0.1';
    4747
    4848    /**
  • work-the-flow-file-upload/trunk/work-the-flow-file-upload.php

    r1206638 r1228203  
    55 * Plugin URI:        http://wtf-fu.com
    66 * Description:       Front end Html5 File Upload and configurable Workflow steps. Multiple file drag and drop, gallery image display, file reordering and archiving.
    7  * Version:           3.0.0
     7 * Version:           3.0.1
    88 * Author:            Lynton Reed
    99 * Author URI:        http://wtf-fu.com
Note: See TracChangeset for help on using the changeset viewer.