403Webshell
Server IP : 104.21.14.103  /  Your IP : 3.147.74.27
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Newsletter/Shortcodes/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/Newsletter/Shortcodes/ShortcodesHelper.php
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Newsletter\Shortcodes;

if (!defined('ABSPATH')) exit;


use MailPoet\CustomFields\CustomFieldsRepository;
use MailPoet\Entities\NewsletterLinkEntity;

class ShortcodesHelper {
  /** @var CustomFieldsRepository */
  private $customFieldsRepository;

  public function __construct(
    CustomFieldsRepository $customFieldsRepository
  ) {
    $this->customFieldsRepository = $customFieldsRepository;
  }

  public function getShortcodes(): array {
    $shortcodes = [
      __('Subscriber', 'mailpoet') => [
        [
          'text' => __('First Name', 'mailpoet'),
          'shortcode' => '[subscriber:firstname | default:reader]',
        ],
        [
          'text' => __('Last Name', 'mailpoet'),
          'shortcode' => '[subscriber:lastname | default:reader]',
        ],
        [
          'text' => __('Email Address', 'mailpoet'),
          'shortcode' => '[subscriber:email]',
        ],
        [
          'text' => __('WordPress User Display Name', 'mailpoet'),
          'shortcode' => '[subscriber:displayname | default:member]',
        ],
        [
          'text' => __('Total Number of Subscribers', 'mailpoet'),
          'shortcode' => '[subscriber:count]',
        ],
      ],
      __('Newsletter', 'mailpoet') => [
        [
          'text' => __('Newsletter Subject', 'mailpoet'),
          'shortcode' => '[newsletter:subject]',
        ],
      ],
      __('Post Notifications', 'mailpoet') => [
        [
          'text' => __('Total Number of Posts or Pages', 'mailpoet'),
          'shortcode' => '[newsletter:total]',
        ],
        [
          'text' => __('Most Recent Post Title', 'mailpoet'),
          'shortcode' => '[newsletter:post_title]',
        ],
        [
          'text' => __('Issue Number', 'mailpoet'),
          'shortcode' => '[newsletter:number]',
        ],
      ],
      __('Date', 'mailpoet') => [
        [
          'text' => __('Current day of the month number', 'mailpoet'),
          'shortcode' => '[date:d]',
        ],
        [
          'text' => __('Current day of the month in ordinal form, i.e. 2nd, 3rd, 4th, etc.', 'mailpoet'),
          'shortcode' => '[date:dordinal]',
        ],
        [
          'text' => __('Full name of current day', 'mailpoet'),
          'shortcode' => '[date:dtext]',
        ],
        [
          'text' => __('Current month number', 'mailpoet'),
          'shortcode' => '[date:m]',
        ],
        [
          'text' => __('Full name of current month', 'mailpoet'),
          'shortcode' => '[date:mtext]',
        ],
        [
          'text' => __('Year', 'mailpoet'),
          'shortcode' => '[date:y]',
        ],
      ],
      __('Links', 'mailpoet') => [
        [
          'text' => __('Unsubscribe link', 'mailpoet'),
          'shortcode' => sprintf(
            '<a target="_blank" href="%s">%s</a>',
            NewsletterLinkEntity::UNSUBSCRIBE_LINK_SHORT_CODE,
            __('Unsubscribe', 'mailpoet')
          ),
        ],
        [
          'text' => __('Edit subscription page link', 'mailpoet'),
          'shortcode' => sprintf(
            '<a target="_blank" href="%s">%s</a>',
            '[link:subscription_manage_url]',
            __('Manage subscription', 'mailpoet')
          ),
        ],
        [
          'text' => __('View in browser link', 'mailpoet'),
          'shortcode' => sprintf(
            '<a target="_blank" href="%s">%s</a>',
            '[link:newsletter_view_in_browser_url]',
            __('View in your browser', 'mailpoet')
          ),
        ],
      ],
      __('Site', 'mailpoet') => [
        [
          'text' => __('Site title', 'mailpoet'),
          'shortcode' => '[site:title]',
        ],
        [
          'text' => __('Homepage link', 'mailpoet'),
          'shortcode' => sprintf(
            '<a target="_blank" href="%s">%s</a>',
            '[site:homepage_url]',
            '[site:title]'
          ),
        ],
        [
          'text' => __('Homepage URL', 'mailpoet'),
          'shortcode' => '[site:homepage_url]',
        ],
      ],
    ];
    $customFields = $this->getCustomFields();
    if (count($customFields) > 0) {
      $shortcodes[__('Subscriber', 'mailpoet')] = array_merge(
        $shortcodes[__('Subscriber', 'mailpoet')],
        $customFields
      );
    }
    return $shortcodes;
  }

  public function getCustomFields(): array {
    $customFields = $this->customFieldsRepository->findAll();
    return array_map(function($customField) {
      return [
        'text' => $customField->getName(),
        'shortcode' => '[subscriber:cf_' . $customField->getId() . ']',
      ];
    }, $customFields);
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit