Admin
2 years ago
Ajax
2 years ago
ApplyFilter
2 years ago
Asset
2 years ago
Capabilities
2 years ago
Check
2 years ago
Column
2 years ago
ColumnRepository
2 years ago
ColumnSize
2 years ago
Controller
2 years ago
Deprecated
2 years ago
Entity
2 years ago
Exception
2 years ago
Form
2 years ago
Helper
2 years ago
Integration
2 years ago
ListScreen
2 years ago
ListScreenFactory
2 years ago
ListScreenRepository
2 years ago
ListTable
2 years ago
Message
2 years ago
Meta
2 years ago
Nonce
2 years ago
Plugin
2 years ago
Preferences
2 years ago
Promo
2 years ago
Relation
2 years ago
Request
2 years ago
RequestHandler
2 years ago
Response
2 years ago
Sanitize
2 years ago
Screen
2 years ago
Service
2 years ago
Settings
2 years ago
Storage
2 years ago
Table
2 years ago
ThirdParty
2 years ago
Transient
2 years ago
Type
2 years ago
View
2 years ago
AdminColumns.php
2 years ago
ArrayIterator.php
2 years ago
Capabilities.php
2 years ago
Collection.php
2 years ago
Column.php
2 years ago
ColumnGroups.php
2 years ago
ColumnRepository.php
2 years ago
Config.php
2 years ago
Container.php
2 years ago
DefaultColumnsRepository.php
2 years ago
Dependencies.php
2 years ago
Expirable.php
2 years ago
Groups.php
2 years ago
Helper.php
2 years ago
Integration.php
2 years ago
IntegrationRepository.php
2 years ago
Integrations.php
2 years ago
Iterator.php
2 years ago
ListScreen.php
2 years ago
ListScreenCollection.php
2 years ago
ListScreenFactory.php
2 years ago
ListScreenGroupsFactory.php
2 years ago
ListScreenPost.php
2 years ago
ListScreenRepository.php
2 years ago
ListScreenRepositoryWritable.php
2 years ago
ListTable.php
2 years ago
ListTableFactory.php
2 years ago
Message.php
2 years ago
MetaType.php
2 years ago
Middleware.php
2 years ago
OpCacheInvalidateTrait.php
2 years ago
PluginActionLinks.php
2 years ago
PluginActionUpgrade.php
2 years ago
PluginUpdate.php
2 years ago
PostType.php
2 years ago
PostTypeRepository.php
2 years ago
Preferences.php
2 years ago
Promo.php
2 years ago
PromoCollection.php
2 years ago
Registerable.php
2 years ago
Relation.php
2 years ago
Renderable.php
2 years ago
Request.php
2 years ago
RequestAjaxHandler.php
2 years ago
RequestAjaxHandlers.php
2 years ago
RequestAjaxParser.php
2 years ago
Sanitize.php
2 years ago
Screen.php
2 years ago
ScreenController.php
2 years ago
Services.php
2 years ago
Stringable.php
2 years ago
Transient.php
2 years ago
TypedArrayIterator.php
2 years ago
View.php
2 years ago
ViewCollection.php
2 years ago
WpListTableFactory.php
2 years ago
Transient.php
71 lines
| 1 | <?php |
| 2 | |
| 3 | namespace AC; |
| 4 | |
| 5 | use LogicException; |
| 6 | |
| 7 | class Transient implements Expirable |
| 8 | { |
| 9 | |
| 10 | /** |
| 11 | * @var Storage\Option |
| 12 | */ |
| 13 | protected $option; |
| 14 | |
| 15 | /** |
| 16 | * @var Storage\Timestamp |
| 17 | */ |
| 18 | protected $timestamp; |
| 19 | |
| 20 | public function __construct(string $key, bool $network_only = false) |
| 21 | { |
| 22 | $option_factory = $network_only |
| 23 | ? new Storage\NetworkOptionFactory() |
| 24 | : new Storage\OptionFactory(); |
| 25 | |
| 26 | $this->option = $option_factory->create($key); |
| 27 | $this->timestamp = new Storage\Timestamp( |
| 28 | $option_factory->create($key . '_timestamp') |
| 29 | ); |
| 30 | } |
| 31 | |
| 32 | public function is_expired(int $value = null): bool |
| 33 | { |
| 34 | return $this->timestamp->is_expired($value); |
| 35 | } |
| 36 | |
| 37 | public function has_expiration_time(): bool |
| 38 | { |
| 39 | return false !== $this->timestamp->get(); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * @return mixed |
| 44 | */ |
| 45 | public function get() |
| 46 | { |
| 47 | return $this->option->get(); |
| 48 | } |
| 49 | |
| 50 | public function delete(): void |
| 51 | { |
| 52 | $this->option->delete(); |
| 53 | $this->timestamp->delete(); |
| 54 | } |
| 55 | |
| 56 | /** |
| 57 | * @param mixed $data |
| 58 | * @param int $expiration Time until expiration in seconds. |
| 59 | * |
| 60 | * @return bool |
| 61 | * @throws LogicException |
| 62 | */ |
| 63 | public function save($data, int $expiration): bool |
| 64 | { |
| 65 | // Always store timestamp before option data. |
| 66 | $this->timestamp->save(time() + $expiration); |
| 67 | |
| 68 | return $this->option->save($data); |
| 69 | } |
| 70 | |
| 71 | } |