文件操作 - save.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/i2kairpad/public_html/wp-content/plugins/kk-star-ratings/src/core/actions/save.php
编辑文件内容
<?php /* * This file is part of bhittani/kk-star-ratings. * * (c) Kamal Khan <shout@bhittani.com> * * For the full copyright and license information, please view * the LICENSE file that was distributed with this source code. */ namespace Bhittani\StarRating\core\actions; use function Bhittani\StarRating\core\functions\filter; use function Bhittani\StarRating\core\functions\option; use function Bhittani\StarRating\core\functions\post_meta; if (! defined('KK_STAR_RATINGS')) { http_response_code(404); exit(); } function save(float $outOf5, int $id, string $slug, array $payload): void { $count = (int) filter('count', null, $id, $slug); $ratings = (float) filter('ratings', null, $id, $slug); $legacySlug = $slug == 'default' ? '' : "_{$slug}"; $fingerprint = filter('fingerprint', null, $id, $slug); // For safe keeping, ensure we have not already casted this vote. if (get_post_status($id) === 'publish' && $count == ((int) $payload['count'] ?? 0) && $ratings == ((float) $payload['ratings'] ?? 0) ) { $newCount = $count + 1; $newRatings = $ratings + $outOf5; $shouldBeUnique = in_array('unique', (array) option('strategies')); post_meta($id, [ "count_{$slug}" => $newCount, "ratings_{$slug}" => $newRatings, "avg_{$slug}" => $newRatings / $newCount, ]); if ($shouldBeUnique) { post_meta($id, [ "fingerprint_{$slug}[]" => $fingerprint, ]); } // Legacy support... post_meta($id, [ "casts{$legacySlug}" => $newCount, // < v5 "ratings{$legacySlug}" => $newRatings, // < v5 "avg{$legacySlug}" => $newRatings / $newCount, // < v3 ]); if ($shouldBeUnique) { post_meta($id, [ "ref{$legacySlug}[]" => $fingerprint, // v3, v4 ]); } } // Backwards compatibility! // Allow third-party code to continue relying // on legacy/depecrated action hook. // < v3 do_action('kksr_rate', $id, $outOf5, $fingerprint); // v3 (replaced by v4) // do_action('kksr_vote', $id, $outOf5, $fingerprint); // < v5 do_action('kksr_vote', $outOf5, 5, $id, $legacySlug, $fingerprint); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件