文件操作 - CustomData.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/ionos-loop/inc/data/CustomData.php
编辑文件内容
<?php namespace Ionos\Loop\Data; /** * Custom data provider for information stored with Custom_Data_Store */ class CustomData extends DataProvider { /** * The options key. * * @var string */ private $options_key; /** * The constructor. * * @param string $options_key The options key. */ public function __construct( $options_key ) { $this->options_key = 'ionos_loop_' . $options_key; parent::__construct(); } /** * The data collector, reads all the stored data from the wp_options. * * @return array */ protected function collect_data() { $data = get_option( $this->options_key, [] ); if ( ! is_array( $data ) ) { return []; } return $data; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件