- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
64 lines
1.8 KiB
PHP
Executable File
64 lines
1.8 KiB
PHP
Executable File
<?php
|
|
|
|
class BWFAN_API_Delete_Contact_Note extends BWFAN_API_Base {
|
|
public static $ins;
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$ins ) {
|
|
self::$ins = new self();
|
|
}
|
|
|
|
return self::$ins;
|
|
}
|
|
|
|
|
|
public function __construct() {
|
|
parent::__construct();
|
|
$this->method = WP_REST_Server::DELETABLE;
|
|
$this->route = '/v3/contacts/(?P<contact_id>[\\d]+)/notes/(?P<note_id>[\\d]+)';
|
|
}
|
|
|
|
public function default_args_values() {
|
|
return array(
|
|
'contact_id' => 0,
|
|
'note_id' => 0,
|
|
);
|
|
}
|
|
|
|
public function process_api_call() {
|
|
/** checking if search present in params **/
|
|
|
|
$contact_id = $this->get_sanitized_arg( 'contact_id', 'text_field' );
|
|
if ( empty( $contact_id ) ) {
|
|
return $this->error_response( __( 'Contact id is mandatory', 'wp-marketing-automations' ) );
|
|
}
|
|
|
|
$contact = new BWFCRM_Contact( $contact_id );
|
|
|
|
if ( ! $contact instanceof BWFCRM_Contact || 0 === $contact->get_id() ) {
|
|
$this->response_code = 404;
|
|
|
|
/* translators: 1: Contact ID */
|
|
|
|
return $this->error_response( sprintf( __( 'No contact found with given id #%1$d', 'wp-marketing-automations' ), $contact_id ) );
|
|
}
|
|
$note_id = intval( $this->get_sanitized_arg( 'note_id', 'key' ) );
|
|
$delete_contact_note_result = $contact->delete_notes( $note_id );
|
|
|
|
if ( ! $delete_contact_note_result ) {
|
|
$this->response_code = 404;
|
|
|
|
/* translators: 1: Contact ID */
|
|
|
|
return $this->error_response( sprintf( __( 'Unable to delete the note for contact #%1$d', 'wp-marketing-automations' ), $contact_id ) );
|
|
}
|
|
|
|
$this->response_code = 200;
|
|
$success_message = __( 'Contact notes deleted', 'wp-marketing-automations' );
|
|
|
|
return $this->success_response( array( 'contact_id' => $contact_id ), $success_message );
|
|
}
|
|
}
|
|
|
|
BWFAN_API_Loader::register( 'BWFAN_API_Delete_Contact_Note' );
|