: str_replace(): Passing null to parameter #2 ($replace) of type array|string is deprecated in
* Importer for easy-modal model modal
* @copyright Copyright (c) 2023, Code Atlantic LLC
// Exit if accessed directly
if ( ! defined( 'ABSPATH' ) ) {
class EModal_Model_Modal extends EModal_Model {
protected $_class_name = 'EModal_Model_Modal';
protected $_table_name = 'em_modals';
protected $_default_fields = [
'created' => '0000-00-00 00:00:00',
'modified' => '0000-00-00 00:00:00',
public function __construct( $id = null ) {
parent::__construct( $id );
public function __get( $key ) {
return parent::__get( $key );
$this->created = date( 'Y-m-d H:i:s' );
$this->modified = date( 'Y-m-d H:i:s' );
$this->meta->modal_id = $this->id;
public function load_meta() {
if ( empty( $this->meta ) ) {
$this->meta = new EModal_Model_Modal_Meta( $this->id );
public function as_array() {
$array = parent::as_array();
$array['meta'] = $this->meta->as_array();
public function set_fields( array $data ) {
if ( ! empty( $data['meta'] ) ) {
$this->meta->set_fields( $data['meta'] );
parent::set_fields( $data );
if ( ! function_exists( 'get_all_modals' ) ) {
function get_all_modals( $where = 'is_trash != 1' ) {
$EModal_Model_Modal = new EModal_Model_Modal();
$EModal_Model_Modal_Meta = new EModal_Model_Modal_Meta();
foreach ( $EModal_Model_Modal->load( "SELECT * FROM {$wpdb->prefix}em_modals" . ( $where ? ' WHERE ' . $where : '' ) ) as $modal ) {
$modals[ $modal->id ] = $modal;
$modal_ids[] = $modal->id;
if ( count( $modals ) ) {
foreach ( $EModal_Model_Modal_Meta->load( "SELECT * FROM {$wpdb->prefix}em_modal_metas WHERE modal_id IN (" . implode( ',', $modal_ids ) . ')' ) as $meta ) {
$modals[ $meta->modal_id ]->meta->process_load( $meta->as_array() );
if ( ! function_exists( 'get_current_modal' ) ) {
function get_current_modal( $key = null ) {
$values = $current_modal->as_array();
return emresolve( $values, $key, false );
if ( ! function_exists( 'get_current_modal_id' ) ) {
function get_current_modal_id() {
return $current_modal ? $current_modal->id : null;
if ( ! function_exists( 'count_all_modals' ) ) {
function count_all_modals() {
return (int) $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}em_modals WHERE is_trash = 0" );
if ( ! function_exists( 'count_deleted_modals' ) ) {
function count_deleted_modals() {
return (int) $wpdb->get_var( "SELECT COUNT(*) FROM {$wpdb->prefix}em_modals WHERE is_trash = 1" );