This commit is contained in:
2026-07-02 15:54:39 -06:00
commit 9883323161
17470 changed files with 4470592 additions and 0 deletions
@@ -0,0 +1,178 @@
<?php
require_once( ABSPATH . '/wp-admin/includes/class-wp-list-table.php' );
class GF_API_Keys_Table extends WP_List_Table {
public function __construct( $args = array() ) {
parent::__construct( $args );
}
protected function get_table_classes() {
return array( 'widefat', 'striped', 'feeds', 'api_key_table' );
}
/**
* Returns an array of columns to be included in the list table.
*
* @since 2.4
* @since 2.4.22 Removed the key column.
*
* @return array
*/
function get_columns() {
return array(
'description' => esc_html__( 'Description', 'gravityforms' ),
'user' => esc_html__( 'User', 'gravityforms' ),
'permissions' => esc_html__( 'Permissions', 'gravityforms' ),
'last_access' => esc_html__( 'Last Access', 'gravityforms' ),
);
}
function prepare_items() {
$this->_column_headers = array( $this->get_columns(), array(), array() );
$this->items = GFWebAPI::get_api_keys();
}
function process_action() {
$action = rgget( 'single_action' );
if ( $action !== 'revoke' ) {
return;
}
check_admin_referer( 'gforms_revoke_key' );
$this->delete_api_key( rgget( 'key_id' ) );
}
function column_default( $item, $column_name ) {
return $item[ $column_name ];
}
function column_description( $item ) {
// create a nonce
$revoke_nonce = wp_create_nonce( 'gforms_revoke_key' );
$description = $item['description'];
$confirm = "javascript: if( ! confirm('WARNING: You are about to revoke this API Key. \'Cancel\' to stop, \'OK\' to revoke.')){ event.stopPropagation(); return false } ";
$nonce_url = wp_nonce_url( '?page=gf_settings&subview=gravityformswebapi', 'gf_revoke_key' );
$actions = array(
'edit' => '<a href="#" class="rest-api-edit-key" data-id=" ' . esc_attr( $item['key_id'] ) . ' " >' . esc_html__( 'Edit', 'gravityforms' ) . '</a>',
'delete' => sprintf( '<a data-wp-lists="delete:the-list:key_row_%d::status=delete&action=delete_key&key=%d" onclick="%s" href="%s" class="submitdelete">Revoke</a>', absint( $item['key_id'] ), absint( $item['key_id'] ), $confirm, $nonce_url ),
);
return $description . $this->row_actions( $actions );
}
function get_edit_url( $key_id ) {
return sprintf( '?page=gf_settings&subview=gravityformswebapi&action=edit&key_id=%s', absint( $key_id ) );
}
function column_last_access( $item ) {
return empty( $item['last_access'] ) ? __( 'Never Accessed', 'gravityforms' ) : GFCommon::format_date( $item['last_access'], true, '', true );
}
function column_permissions( $item ) {
if ( $item['permissions'] == 'read_write' ) {
return 'Read/Write';
} else {
return ucwords( $item['permissions'] );
}
}
function no_items() {
echo '<div style="padding:10px;">' . esc_html__( 'You don\'t have any API keys. Let\'s add one by clicking the Add Key button below.', 'gravityforms' ) . '</div>';
}
/**
* Display the table
*
* @since 3.1.0
*/
public function display() {
$singular = $this->_args['singular'];
$this->screen->render_screen_reader_content( 'heading_list' );
?>
<input type="hidden" name="single_action"/> <input type="hidden" name="action_args"/>
<table class="wp-list-table <?php echo esc_attr( implode( ' ', $this->get_table_classes() ) ); ?>">
<thead>
<tr>
<?php $this->print_column_headers(); ?>
</tr>
</thead>
<tbody id="the-list"<?php
if ( $singular ) {
echo " data-wp-lists='list:$singular'"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
} ?>>
<?php $this->display_rows_or_placeholder(); ?>
</tbody>
</table>
<button type="button" class="gform-button gform-button--white" id="rest-api-add-key" data-js="rest-api-add-key" style="margin-top: 10px"><?php echo esc_html__( 'Add Key', 'gravityforms' ) ?></button>
<?php
}
/**
* Generates content for a single row of the table
*
* @since 3.1.0
*
* @param object $item The current item
*/
public function single_row( $item ) {
echo "<tr id='key_row_{$item['key_id']}' >"; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
$this->single_row_columns( $item );
echo '</tr>';
}
public function output_styles() {
?>
<style>
table.gforms_form_settings .api_key_table td { padding-left: 10px; vertical-align: top; }
#add_setting_button { margin-top: 10px; }
tr:hover .row-actions { position: relative; }
.api_key_table tr:hover .row-actions { position: static; }
</style>
<?php
}
public function output_scripts() {
?>
<script type="text/javascript">
jQuery(document).ready(function () {
const list = jQuery("#the-list");
list.wpList();
// PHP cannot detect the changes and with this we inspect the current DOM and insert the no-items message immediately without refreshing the page.
const noItemsHTML = <?php echo json_encode('<tr class="no-items alternate"><td class="colspanchange" colspan="4"><div style="padding:10px;">' . esc_html__( "You don't have any API keys. Let's add one by clicking the Add Key button below.", "gravityforms" ) . '</div></td></tr>'); ?>;
list.on( 'wpListDelEnd', function () {
const table = list[0]
const rows = table.querySelectorAll('tr')
const allRowsHidden = Array.from( rows ).every( row => getComputedStyle( row ).display === 'none' );
if ( allRowsHidden && !table.querySelector( '.no-items' ) ) {
list.html( noItemsHTML );
}
} )
});
</script>
<?php
}
}