[ SYSTEM ]: Linux wordpress 6.1.0-44-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.164-1 (2026-03-09) x86_64
[ SERVER ]: Apache/2.4.66 (Debian) | PHP: 8.2.30
[ USER ]: www-data | IP: 172.19.30.54
GEFORCE FILE MANAGER
/
var
/
www
/
html
/
wordpress
/
wp-content
/
plugins
/
rocket-lazy-load
/
src
/
Dependencies
/
LaunchpadOptions
/
UPLOAD:
NAME
SIZE
QUICK PERMS
ACTIONS
📁 Interfaces
SET
[ DEL ]
📁 Traits
SET
[ DEL ]
📄 Options.php
1,936 B
SET
[ EDIT ]
|
[ DEL ]
📄 Set.php
3,015 B
SET
[ EDIT ]
|
[ DEL ]
📄 Settings.php
2,703 B
SET
[ EDIT ]
|
[ DEL ]
📄 SiteOptions.php
1,890 B
SET
[ EDIT ]
|
[ DEL ]
📄 Transients.php
1,641 B
SET
[ EDIT ]
|
[ DEL ]
DELETE SELECTED
[ CLOSE ]
EDIT: Transients.php
<?php namespace RocketLazyLoadPlugin\Dependencies\LaunchpadOptions; use RocketLazyLoadPlugin\Dependencies\LaunchpadOptions\Traits\PrefixedKeyTrait; class Transients implements Interfaces\TransientsInterface { use PrefixedKeyTrait; /** * Constructor * * @param string $prefix transients prefix. */ public function __construct( string $prefix = '' ) { $this->prefix = $prefix; } /** * Gets the transient for the given name. Returns the default value if the value does not exist. * * @param string $name Name of the transient to get. * @param mixed $default Default value to return if the value does not exist. * * @return mixed */ public function get( string $name, $default = null ) { $transient = get_transient( $this->get_full_key( $name ), $default ); if ( is_array( $default ) && ! is_array( $transient ) ) { $option = (array) $transient; } return $transient; } /** * Sets the value of an transient. Update the value if the transient for the given name already exists. * * @param string $name Name of the transient to set. * @param mixed $value Value to set for the transient. * @param int $expiration Time until expiration in seconds. Default 0 (no expiration). * * @return void */ public function set( string $name, $value, int $expiration = 0 ) { set_transient( $this->get_full_key( $name ), $value, $expiration ); } /** * Deletes the transient with the given name. * * @param string $name Name of the transient to delete. * * @return void */ public function delete( string $name ) { delete_transient( $this->get_full_key( $name ) ); } }