Skip to content

Commit

Permalink
deploy: 02640a5
Browse files Browse the repository at this point in the history
  • Loading branch information
dkotter committed Aug 15, 2024
1 parent 3449666 commit c360c09
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
5 changes: 4 additions & 1 deletion classes_PullListTable.php.html
Original file line number Diff line number Diff line change
Expand Up @@ -400,9 +400,12 @@ <h1 class="page-title">Source: classes/PullListTable.php</h1>

if ( ! empty( $new_post ) ) {
$actions = [
'edit' => '&lt;a href="' . esc_url( get_edit_post_link( $new_post_id ) ) . '">' . esc_html__( 'Edit', 'distributor' ) . '&lt;/a>',
'view' => '&lt;a href="' . esc_url( get_permalink( $new_post_id ) ) . '">' . esc_html__( 'View', 'distributor' ) . '&lt;/a>',
];

if ( current_user_can( 'edit_post', $new_post_id ) ) {
$actions['edit'] = '&lt;a href="' . esc_url( get_edit_post_link( $new_post_id ) ) . '">' . esc_html__( 'Edit', 'distributor' ) . '&lt;/a>';
}
}
}

Expand Down
2 changes: 1 addition & 1 deletion dt_pull_filters.html
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ <h4 class="name" id="dt_pull_filters">do_action( 'dt_pull_filters' )</h4>

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="classes_PullListTable.php.html">classes/PullListTable.php</a>, <a href="classes_PullListTable.php.html#line650">line 650</a>
<a href="classes_PullListTable.php.html">classes/PullListTable.php</a>, <a href="classes_PullListTable.php.html#line653">line 653</a>
</li></ul></dd>


Expand Down
2 changes: 1 addition & 1 deletion dt_pull_list_table_tr_class.html
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ <h5>Parameters:</h5>

<dt class="tag-source">Source:</dt>
<dd class="tag-source"><ul class="dummy"><li>
<a href="classes_PullListTable.php.html">classes/PullListTable.php</a>, <a href="classes_PullListTable.php.html#line400">line 400</a>
<a href="classes_PullListTable.php.html">classes/PullListTable.php</a>, <a href="classes_PullListTable.php.html#line403">line 403</a>
</li></ul></dd>


Expand Down

0 comments on commit c360c09

Please sign in to comment.