文件操作 - extensions.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/popup-maker/includes/functions/extensions.php
编辑文件内容
<?php /** * Functions for extensions * * @package PopupMaker * @copyright Copyright (c) 2024, Code Atlantic LLC */ // Exit if accessed directly if ( ! defined( 'ABSPATH' ) ) { exit; } /** * Gets an array of active extensions. * * @since 1.7.0 * * @return mixed */ function pum_enabled_extensions() { return apply_filters( 'pum_enabled_extensions', [] ); } /** * Checks if a specified extension is currently active. * * @since 1.7.0 * * @param string $extension * * @return bool */ function pum_extension_enabled( $extension = '' ) { $enabled_extensions = pum_enabled_extensions(); return ! empty( $extension ) && array_key_exists( $extension, $enabled_extensions ); }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件