LLMS_Admin_Table::get_tr_html( mixed $row )
Get the HTML for a single row in the body of the table.
Parameters Parameters
- $row
-
(mixed) (Required) array/object of data describing a single row in the table
Return Return
(string)
Source Source
File: includes/abstracts/abstract.llms.admin.table.php
<?php if ( $this->max_pages ) : ?> <button class="llms-button-primary small" data-page="1" name="llms-table-paging"><span class="dashicons dashicons-arrow-left-alt"></span> <?php _e( 'First', 'lifterlms' ); ?></button> <?php endif; ?> <button class="llms-button-primary small" data-page="<?php echo $this->current_page - 1; ?>" name="llms-table-paging"><span class="dashicons dashicons-arrow-left-alt2"></span> <?php _e( 'Back', 'lifterlms' ); ?></button> <?php endif; ?> <?php if ( ! $this->is_last_page ) : ?> <button class="llms-button-primary small" data-page="<?php echo $this->current_page + 1; ?>" name="llms-table-paging"><?php _e( 'Next', 'lifterlms' ); ?> <span class="dashicons dashicons-arrow-right-alt2"></span></button> <?php if ( $this->max_pages ) : ?> <button class="llms-button-primary small" data-page="<?php echo $this->max_pages; ?>" name="llms-table-paging"><?php _e( 'Last', 'lifterlms' ); ?> <span class="dashicons dashicons-arrow-right-alt"></span></button> <?php endif; ?> <?php endif; ?> </div> <?php endif; ?>
Expand full source code Collapse full source code View on GitHub
Changelog Changelog
Version | Description |
---|---|
3.2.0 | Introduced. |