文件操作 - HasLabel.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Framework/FieldsAPI/Concerns/HasLabel.php
编辑文件内容
<?php namespace Give\Framework\FieldsAPI\Concerns; trait HasLabel { /** @var string */ protected $label; /** * @since 2.24.0 add types */ public function label(string $label): self { $this->label = $label; return $this; } /** * @since 2.24.0 add types * * @return string|null */ public function getLabel() { return $this->label; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件