文件操作 - Color.php
返回文件管理
返回主菜单
删除本文件
文件: /home/www/public/wp-content/plugins/smart-slider-3/Nextend/Framework/Form/Element/Text/Color.php
编辑文件内容
<?php namespace Nextend\Framework\Form\Element\Text; use Nextend\Framework\Asset\Js\Js; use Nextend\Framework\Form\Element\Text; class Color extends Text { protected $alpha = false; protected $class = 'n2_field_color '; protected function fetchElement() { if ($this->alpha) { $this->class .= 'n2_field_color--alpha '; } $html = parent::fetchElement(); Js::addInline('new _N2.FormElementColor("' . $this->fieldID . '", ' . intval($this->alpha) . ');'); return $html; } protected function pre() { return '<div class="n2-field-color-preview n2_checker_box"><div class="n2-field-color-preview-inner"></div></div>'; } protected function post() { return ''; } /** * @param boolean $alpha */ public function setAlpha($alpha) { $this->alpha = $alpha; } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件