Changeset 1228203
- Timestamp:
- 08/22/2015 10:19:25 PM (11 years ago)
- Location:
- work-the-flow-file-upload/trunk
- Files:
-
- 1 added
- 5 edited
-
README.txt (modified) (1 diff)
-
admin/class-wtf-fu-admin.php (modified) (3 diffs)
-
admin/views/admin-workflows.php (modified) (1 diff)
-
public/assets/jQuery-File-Upload-9.5.0/js/index.php (added)
-
public/class-wtf-fu.php (modified) (1 diff)
-
work-the-flow-file-upload.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
work-the-flow-file-upload/trunk/README.txt
r1206638 r1228203 4 4 Tags: file upload, upload, workflow, html5, image, gallery 5 5 Requires at least: 3.5.1 6 Tested up to: 4. 27 Stable tag: 3.0. 06 Tested up to: 4.3 7 Stable tag: 3.0.1 8 8 License: GPLv2 or later 9 9 License URI: http://www.gnu.org/licenses/gpl-2.0.html -
work-the-flow-file-upload/trunk/admin/class-wtf-fu-admin.php
r1206638 r1228203 288 288 289 289 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')); 301 291 break; 302 292 … … 304 294 case 'workflows-workflow-options' : 305 295 $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()); 310 297 break; 311 298 312 299 case 'workflows-workflow-stage-options' : 313 300 $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()); 316 302 break; 317 303 … … 329 315 $tabs[] = array('id' => 'templates', 'title' => __('Templates'), 'content' => wtf_fu_get_general_info('Templates')); 330 316 $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 339 318 break; 340 319 -
work-the-flow-file-upload/trunk/admin/views/admin-workflows.php
r954893 r1228203 45 45 $workflowListTable->prepare_items(); 46 46 ?> 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 47 56 <div class="wrap"> 48 57 <div id="icon-users" class="icon32"><br/></div> -
work-the-flow-file-upload/trunk/public/class-wtf-fu.php
r1206638 r1228203 44 44 * @var string 45 45 */ 46 const VERSION = '3.0. 0';46 const VERSION = '3.0.1'; 47 47 48 48 /** -
work-the-flow-file-upload/trunk/work-the-flow-file-upload.php
r1206638 r1228203 5 5 * Plugin URI: http://wtf-fu.com 6 6 * 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. 07 * Version: 3.0.1 8 8 * Author: Lynton Reed 9 9 * Author URI: http://wtf-fu.com
Note: See TracChangeset
for help on using the changeset viewer.