Files
roi-theme/wp-content/plugins/wp-marketing-automations-pro/crm/includes/abstracts/class-bwfcrm-calls-base.php
root a22573bf0b Commit inicial - WordPress Análisis de Precios Unitarios
- 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>
2025-11-03 21:04:30 -06:00

23 lines
410 B
PHP
Executable File

<?php
namespace BWFCRM\Calls;
/**
* Calls base class
*/
#[\AllowDynamicProperties]
abstract class Base {
/** Handle action response type */
public static $RESPONSE_FAILED = 1;
public static $RESPONSE_SUCCESS = 2;
public static $RESPONSE_SKIPPED = 3;
/**
* Abstract function to process call
*
* @param $contact
* @param $data
*/
abstract public function process_call( $contact, $data );
}