| Name | Size | Mode | Actions |
|---|---|---|---|
| birthday.php | 3249 | 0666 | editdlrm |
| black-friday.php | 3215 | 0666 | editdlrm |
/home/techb158/public_html/wp-content/plugins/elementor/modules/promotions/pointers/birthday.php (3249B)
' . esc_html__( 'Get more capabilities for less with exclusive discounts. Limited time only.', 'elementor' ); $pointer_content .= sprintf( '
', self::PROMOTION_URL, esc_html__( 'View Deals', 'elementor' ) ); $allowed_tags = [ 'h3' => [], 'p' => [], 'a' => [ 'class' => [], 'target' => [ '_blank' ], 'href' => [], ], ]; ?> = $start && $now <= $end; } private static function is_already_seen_today() { return get_transient( self::get_user_transient_id() ); } private function set_seen_today() { $now = time(); $midnight = strtotime( 'tomorrow midnight' ); $seconds_until_midnight = $midnight - $now; set_transient( self::get_user_transient_id(), $now, $seconds_until_midnight ); } private static function get_user_transient_id(): string { return self::SEEN_TODAY_KEY . '_' . get_current_user_id(); } private function enqueue_dependencies() { wp_enqueue_script( 'wp-pointer' ); wp_enqueue_style( 'wp-pointer' ); } private static function is_dismissed(): bool { return User::get_introduction_meta( static::DISMISS_ACTION_KEY ); } }