Upload::html_order()
Description #
Order of HTML markup.
Source #
File: lib/form/class-upload.php
131 132 133 134 135 136 137 | protected function html_order() { if ( empty ( $this ->args[ 'output_order' ] ) ) { $this ->output_order = array ( 'wrapper_start' , 'label' , 'field_wrap_start' , 'errors' , 'field_markup' , 'desc' , 'file_list' , 'field_wrap_end' , 'wrapper_end' ); } else { $this ->output_order = $this ->args[ 'output_order' ]; } } |
Expand full source code Collapse full source code View on GitHub: lib/form/class-upload.php:131
Add your comment