Submit
Path:
~
/
home
/
getwphos
/
public_html
/
kingpanel
/
wp-content
/
plugins
/
gravityforms
/
includes
/
transients
/
File Content:
class-gf-wp-transient-strategy.php
<?php namespace Gravity_Forms\Gravity_Forms\Transients; class GF_WP_Transient_Strategy implements GF_Transient_Strategy { /** * @param $key * * @return mixed */ public function get( $key ) { return get_transient( $key ); } /** * @param $key * @param $value * @param $timeout * * @return bool */ public function set( $key, $value, $timeout ) { return set_transient( $key, $value, $timeout ); } /** * @param $key * * @return bool */ public function delete( $key ) { return delete_transient( $key ); } }
Submit
FILE
FOLDER
Name
Size
Permission
Action
class-gf-wp-transient-strategy.php
549 bytes
0644
interface-gf-transient-strategy.php
208 bytes
0644
N4ST4R_ID | Naxtarrr