- 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>
31 lines
574 B
PHP
Executable File
31 lines
574 B
PHP
Executable File
<?php
|
|
/**
|
|
* Thrive Themes - https://thrivethemes.com
|
|
*
|
|
* @package thrive-dashboard
|
|
*/
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
exit; // Silence is golden
|
|
}
|
|
|
|
class TD_NM_Trigger_Email_Sign_Up extends TD_NM_Trigger_Abstract {
|
|
|
|
public function applicable_on_data( $tl_item ) {
|
|
if ( $this->in_list( $this->settings['groups'], $tl_item->ID ) ) {
|
|
return true;
|
|
}
|
|
|
|
if ( $this->in_list( $this->settings['shortcodes'], $tl_item->ID ) ) {
|
|
return true;
|
|
}
|
|
|
|
if ( $this->in_list( $this->settings['thrive_boxes'], $tl_item->ID ) ) {
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
}
|