File: /www/wwwroot/ahmsolaiman.com/wp-content/plugins/types/application/models/wordpress/transient.php
<?php
namespace OTGS\Toolset\Types\Model\Wordpress;
/**
* Wrapper for WordPress transient functions
*
* @since 3.3.6
*/
class Transient {
/**
* Set a transient.
*
* @param string $key
* @param mixed $value
* @param int $time_in_seconds Zero means no expiration
* @return bool
*/
public function set_transient( $key, $value, $time_in_seconds = 0 ) {
return set_transient( $key, $value, $time_in_seconds );
}
/**
* Get a transient.
*
* @param string $key
* @return mixed
*/
public function get_transient( $key ) {
return get_transient( $key );
}
/**
* Delete a transient.
*
* @param string $key
* @return bool
*/
public function delete_transient( $key ) {
return delete_transient( $key );
}
}