Server IP : 172.67.216.182 / Your IP : 172.70.147.78 Web Server : Apache System : Linux krdc-ubuntu-s-2vcpu-4gb-amd-blr1-01.localdomain 5.15.0-142-generic #152-Ubuntu SMP Mon May 19 10:54:31 UTC 2025 x86_64 User : www ( 1000) PHP Version : 7.4.33 Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv MySQL : OFF | cURL : ON | WGET : ON | Perl : ON | Python : OFF | Sudo : ON | Pkexec : ON Directory : /www/wwwroot/coircraft.com/wp-content/plugins/post-smtp/Postman/ |
Upload File : |
<?php if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly } if (! class_exists ( "PostmanState" )) { /** * http://stackoverflow.com/questions/23880928/use-oauth-refresh-token-to-obtain-new-access-token-google-api * http://pastebin.com/jA9sBNTk * * Make sure these emails are permitted (see http://en.wikipedia.org/wiki/E-mail_address#Internationalization): */ class PostmanState { private $logger; // the option database name const SLUG = 'postman_state'; const TOO_LONG_SEC = 2592000; // 30 days // the options fields const VERSION = 'version'; const INSTALL_DATE = 'install_date'; const FILE_LOCKING_ENABLED = 'locking_enabled'; const DELIVERY_SUCCESS_TOTAL = 'delivery_success_total'; const DELIVERY_FAILURE_TOTAL = 'delivery_fail_total'; // options data private $options; // singleton instance public static function getInstance() { static $inst = null; if ($inst === null) { $inst = new PostmanState (); } return $inst; } /** * private constructor */ private function __construct() { $this->logger = new PostmanLogger(get_class($this)); $this->load(); } // public function save() { update_option ( self::SLUG, $this->options ); } public function reload() { $this->load (); } private function load() { $this->options = get_option ( self::SLUG ); } /** * Shows the review feature of Postman up to thirty days after install * * @return boolean */ public function isTimeToReviewPostman() { if (! empty ( $this->options [self::INSTALL_DATE] )) { $successful = PostmanState::getInstance ()->getSuccessfulDeliveries () > 0; $maxTime = $this->options [self::INSTALL_DATE] + self::TOO_LONG_SEC; return $successful && time () <= $maxTime; } } public function isFileLockingEnabled() { if (isset ( $this->options [self::FILE_LOCKING_ENABLED] )) return $this->options [self::FILE_LOCKING_ENABLED]; else return false; } public function setFileLockingEnabled($enabled) { $this->options [self::FILE_LOCKING_ENABLED] = $enabled; $this->save (); } public function getVersion() { if (! empty ( $this->options [self::VERSION] )) { return $this->options [self::VERSION]; } } function getSuccessfulDeliveries() { if (isset ( $this->options [PostmanState::DELIVERY_SUCCESS_TOTAL] )) return $this->options [PostmanState::DELIVERY_SUCCESS_TOTAL]; else return 0; } function setSuccessfulDelivery($total) { $this->options [PostmanState::DELIVERY_SUCCESS_TOTAL] = $total; } function incrementSuccessfulDelivery() { $this->setSuccessfulDelivery ( $this->getSuccessfulDeliveries () + 1 ); $this->logger->debug ( 'incrementing success count: ' . $this->getSuccessfulDeliveries () ); $this->save (); } function getFailedDeliveries() { if (isset ( $this->options [PostmanState::DELIVERY_FAILURE_TOTAL] )) return $this->options [PostmanState::DELIVERY_FAILURE_TOTAL]; else return 0; } function setFailedDelivery($total) { $this->options [PostmanState::DELIVERY_FAILURE_TOTAL] = $total; } function incrementFailedDelivery() { $this->setFailedDelivery ( $this->getFailedDeliveries () + 1 ); $this->logger->debug ( 'incrementing failure count: ' . $this->getFailedDeliveries () ); $this->save (); } } }