PHP 8.2.31
Preview: Installation.php Size: 997 B
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Util/Installation.php

<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

namespace MailPoet\Util;

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


use MailPoet\Settings\SettingsController;
use MailPoet\WP\Functions as WPFunctions;
use MailPoetVendor\Carbon\Carbon;

class Installation {
  const NEW_INSTALLATION_DAYS_LIMIT = 30;

  /** @var SettingsController */
  private $settings;

  /** @var WPFunctions */
  private $wp;

  public function __construct(
    SettingsController $settings,
    WPFunctions $wp
  ) {
    $this->settings = $settings;
    $this->wp = $wp;
  }

  public function isNewInstallation() {
    $installedAt = $this->settings->get('installed_at');
    if (is_null($installedAt)) {
      return true;
    }
    $installedAt = Carbon::createFromTimestamp(strtotime($installedAt));
    $currentTime = Carbon::createFromTimestamp($this->wp->currentTime('timestamp'));
    return $currentTime->diffInDays($installedAt) <= self::NEW_INSTALLATION_DAYS_LIMIT;
  }
}

Directory Contents

Dirs: 3 × Files: 17

Name Size Perms Modified Actions
License DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
Notices DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
pQuery DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
1.26 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
576 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
7.81 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.26 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.34 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.76 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.67 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.52 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.14 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.14 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
0 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
997 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.33 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
325 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
356 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.81 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.74 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).