文件操作 - SurveyData.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/ionos-loop/inc/data/SurveyData.php
编辑文件内容
<?php namespace Ionos\Loop\Data; /** * Data Provider for surveys. */ class SurveyData extends DataProvider { const OPTION_KEY = 'ionos_loop_survey_answers'; /** * Collects and filters all survey related information. * * @return array */ protected function collect_data() { $answered_surveys = get_option( self::OPTION_KEY, [] ); $filtered_surveys = array_filter( $answered_surveys, function ( $survey ) use ( $answered_surveys ) { return $survey >= 0; } ); if ( empty( $filtered_surveys ) ) { return null; } foreach ( array_keys( $filtered_surveys ) as $collected ) { $answered_surveys[ $collected ] = -1; } update_option( self::OPTION_KEY, $answered_surveys ); return $filtered_surveys; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件