文件操作 - Blueprint.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/ionos-assistant/vendor/ionos/blueprint/src/Model/Blueprint.php
编辑文件内容
<?php /** * Provides the AS-element Blueprint. * * @package Blueprint */ namespace Ionos\Blueprint\Model; /** * Blueprint Main Class */ class Blueprint extends Collection { protected $AT_SIGNcontext = array( //phpcs:ignore WordPress.NamingConventions 'https://www.w3.org/ns/activitystreams', array( 'bp' => 'https://wpblueprints.org/namespace', 'schema' => 'https://schema.org/version/latest/schemaorg-current-https.jsonld', 'WebApplication' => 'schema:WebApplication', 'Blueprint' => 'bp:Blueprint', 'Install' => 'bp:Install', 'applicationSuite' => 'schema:applicationSuite', ), ); protected $type = array( 'Collection', 'Blueprint' ); protected $content = 'WP Blueprint'; protected $generator; /** * Constructor. Needed, because parent would need parameter */ public function __construct() { } /** * Set Generator * * @param object $application Application-Object. * @return void */ public function set_generator( $application ) { $this->generator = $application; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件