|
@@ 4368-4373 (lines=6) @@
|
| 4365 |
|
$ui['restrict'] = array( 'author_restrict' => $author_restrict ); |
| 4366 |
|
} |
| 4367 |
|
|
| 4368 |
|
if ( ! in_array( 'export', $ui['actions_disabled'], true ) ) { |
| 4369 |
|
$ui['actions_bulk']['export'] = array( |
| 4370 |
|
'label' => __( 'Export', 'pods' ) |
| 4371 |
|
// callback not needed, Pods has this built-in for export |
| 4372 |
|
); |
| 4373 |
|
} |
| 4374 |
|
|
| 4375 |
|
if ( ! in_array( 'delete', $ui['actions_disabled'], true ) ) { |
| 4376 |
|
$ui['actions_bulk']['delete'] = array( |
|
@@ 4375-4380 (lines=6) @@
|
| 4372 |
|
); |
| 4373 |
|
} |
| 4374 |
|
|
| 4375 |
|
if ( ! in_array( 'delete', $ui['actions_disabled'], true ) ) { |
| 4376 |
|
$ui['actions_bulk']['delete'] = array( |
| 4377 |
|
'label' => __( 'Delete', 'pods' ) |
| 4378 |
|
// callback not needed, Pods has this built-in for delete |
| 4379 |
|
); |
| 4380 |
|
} |
| 4381 |
|
|
| 4382 |
|
$detail_url = pods_v( 'detail_url', $this->pod_data['options'] ); |
| 4383 |
|
|