文件操作 - Grouping.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/smart-slider-3/Nextend/Framework/Form/Element/Grouping.php
编辑文件内容
<?php namespace Nextend\Framework\Form\Element; use Nextend\Framework\Form\AbstractField; use Nextend\Framework\Form\ContainerInterface; use Nextend\Framework\Form\TraitFieldset; class Grouping extends AbstractField implements ContainerInterface { use TraitFieldset; protected $rowClass = 'n2_field__grouping'; public function __construct($insertAt, $name = '', $label = false, $parameters = array()) { parent::__construct($insertAt, $name, $label, '', $parameters); } protected function fetchElement() { $html = ''; $element = $this->first; while ($element) { $html .= $this->decorateElement($element); $element = $element->getNext(); } return $html; } public function decorateElement($element) { return $this->parent->decorateElement($element); } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件