文件操作 - Activity.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/ionos-assistant/vendor/ionos/blueprint/src/Model/Activity.php
编辑文件内容
<?php /** * Provides the AS-element Activity. * * @package Blueprint */ namespace Ionos\Blueprint\Model; /** * AS2-object Activity. */ class Activity extends Base { protected $type; protected $summary; protected $object; /** * Sets type and object * * @param string $type AS2-type. * @param object $object Object, on which activity takes place. */ public function __construct( $type, $object ) { $this->type = $type; $this->summary = sprintf( '%s %s: %s', join( ', ', (array) $this->type ), join( ', ', (array) $object->applicationCategory ), $object->abstract ); $this->object = $object; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件