'; echo '
Sie müssen angemeldet sein, um diese Seite anzuzeigen.
'; echo ''; return; } $current_user = wp_get_current_user(); if ( ! in_array( 'ddhh_provider', $current_user->roles, true ) ) { echo ''; return; } // Check if we're in edit mode $is_edit_mode = isset( $_GET['action'] ) && $_GET['action'] === 'edit_job' && isset( $_GET['job_id'] ); // Check if we're in deactivate mode $is_deactivate_mode = isset( $_GET['action'] ) && $_GET['action'] === 'deactivate_job' && isset( $_GET['job_id'] ); if ( $is_edit_mode ) { $job_id = absint( $_GET['job_id'] ); $form_id = DDHH_JM_Formidable::get_job_edit_form_id(); if ( $form_id ) { ?>| Titel | Status | Standort | Art | Aktionen |
|---|---|---|---|---|
| 'edit_job', 'job_id' => $post_id, ), get_permalink() ); echo 'Bearbeiten'; } // View link - only for published posts if ( 'publish' === $post_status ) { echo ' Ansehen'; } // Deactivate link - only for published posts if ( 'publish' === $post_status ) { $deactivate_url = add_query_arg( array( 'action' => 'deactivate_job', 'job_id' => $post_id, ), get_permalink() ); echo ' Deaktivieren'; } ?> |
Sie haben noch keine Stellenangebote erstellt.