文件操作 - HasPlaceholder.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/give/src/Framework/FieldsAPI/Concerns/HasPlaceholder.php
编辑文件内容
<?php namespace Give\Framework\FieldsAPI\Concerns; trait HasPlaceholder { /** @var string */ protected $placeholder; /** * Set the placeholder value. * * @param string $placeholder * * @return $this */ public function placeholder($placeholder) { $this->placeholder = $placeholder; return $this; } /** * Get the placeholder value. * * @return string */ public function getPlaceholder() { return $this->placeholder; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件