File: /home/deshuvsd/www/wp-content/plugins/bangladeshi-payment-gateways/includes/Helper.php
<?php // @codingStandardsIgnoreLine
/**
* Helper Class
*
* @package BDPaymentGateways
* @since 1.0.0
*/
namespace ultraDevs\BDPG;
/**
* Helper Class
*
* @package BDPaymentGateways
* @since 1.0.0
*/
class Helper {
/**
* Constructor
*/
public function __construct() {}
/**
* Add Option
*
* @param string $key Option Key.
* @param mixed $value Option Value.
*/
public static function add_option( $key, $value ) {
// Get Option.
add_option( $key, $value );
}
/**
* Get Option
*
* @param string $key Option Key.
* @param mixed $default Option Default.
*/
public static function get_option( $key, $default = false ) {
// Get Option.
return get_option( $key, $default );
}
/**
* Save Option
*
* @param string $key Option Key.
* @param mixed $value Option Value.
*/
public static function update_option( $key, $value ) {
// Get Option.
update_option( $key, $value );
}
/**
* Time to Day(s) Converter
*
* @param int $time Time.
* @return int
*/
public static function time_to_days( $time ) {
$current_time = current_time( 'timestamp' ); //phpcs:ignore
return round( ( $current_time - $time ) / 24 / 60 / 60 );
}
}