|
@@ 1295-1310 (lines=16) @@
|
| 1292 |
|
/** |
| 1293 |
|
* The header of the item list |
| 1294 |
|
*/ |
| 1295 |
|
public function table_header() { |
| 1296 |
|
?> |
| 1297 |
|
<thead> |
| 1298 |
|
<tr> |
| 1299 |
|
<th style="" class="manage-column column-cb check-column" id="cb" scope="col"> |
| 1300 |
|
<label for="cb-select-all-1" class="screen-reader-text"><?php esc_attr_e( 'Select All', 'wetu-importer' ); ?></label> |
| 1301 |
|
<input type="checkbox" id="cb-select-all-1"> |
| 1302 |
|
</th> |
| 1303 |
|
<th style="" class="manage-column column-title " id="title" style="width:50%;" scope="col"><?php esc_attr_e( 'Title', 'wetu-importer' ); ?></th> |
| 1304 |
|
<th style="" class="manage-column column-date" id="ref" style="width:10%;" scope="col"><?php esc_attr_e( 'Ref', 'wetu-importer' ); ?></th> |
| 1305 |
|
<th style="" class="manage-column column-date" id="date" scope="col"><?php esc_attr_e( 'Date', 'wetu-importer' ); ?></th> |
| 1306 |
|
<th style="" class="manage-column column-ssid" id="ssid" scope="col"><?php esc_attr_e( 'WETU ID', 'wetu-importer' ); ?></th> |
| 1307 |
|
</tr> |
| 1308 |
|
</thead> |
| 1309 |
|
<?php |
| 1310 |
|
} |
| 1311 |
|
|
| 1312 |
|
/** |
| 1313 |
|
* The footer of the item list |
|
@@ 1315-1330 (lines=16) @@
|
| 1312 |
|
/** |
| 1313 |
|
* The footer of the item list |
| 1314 |
|
*/ |
| 1315 |
|
public function table_footer() { |
| 1316 |
|
?> |
| 1317 |
|
<tfoot> |
| 1318 |
|
<tr> |
| 1319 |
|
<th style="" class="manage-column column-cb check-column" id="cb" scope="col"> |
| 1320 |
|
<label for="cb-select-all-1" class="screen-reader-text"><?php esc_attr_e( 'Select All', 'wetu-importer' ); ?></label> |
| 1321 |
|
<input type="checkbox" id="cb-select-all-1"> |
| 1322 |
|
</th> |
| 1323 |
|
<th style="" class="manage-column column-title" scope="col"><?php esc_attr_e( 'Title', 'wetu-importer' ); ?></th> |
| 1324 |
|
<th style="" class="manage-column column-date" id="ref" style="width:10%;" scope="col"><?php esc_attr_e( 'Ref', 'wetu-importer' ); ?></th> |
| 1325 |
|
<th style="" class="manage-column column-date" scope="col"><?php esc_attr_e( 'Date', 'wetu-importer' ); ?></th> |
| 1326 |
|
<th style="" class="manage-column column-ssid" scope="col"><?php esc_attr_e( 'WETU ID', 'wetu-importer' ); ?></th> |
| 1327 |
|
</tr> |
| 1328 |
|
</tfoot> |
| 1329 |
|
<?php |
| 1330 |
|
} |
| 1331 |
|
|
| 1332 |
|
} |
| 1333 |
|
|