文件操作 - text-link.php
返回文件管理
返回主菜单
删除本文件
文件: /storage/v12552/stanleysteamer/public_html/wp-content/themes/bricks/includes/elements/text-link.php
编辑文件内容
<?php namespace Bricks; if ( ! defined( 'ABSPATH' ) ) exit; // Exit if accessed directly class Element_Text_Link extends Element { public $block = 'core/paragraph'; public $category = 'basic'; public $name = 'text-link'; public $icon = 'ti-link'; public $tag = 'a'; public function get_label() { return esc_html__( 'Text link', 'bricks' ); } public function get_keywords() { return [ 'menu', 'link' ]; } public function set_control_groups() { $this->control_groups['icon'] = [ 'title' => esc_html__( 'Icon', 'bricks' ), ]; } public function set_controls() { $this->controls['text'] = [ 'type' => 'text', 'default' => esc_html__( 'Text link', 'bricks' ), ]; $this->controls['link'] = [ 'label' => esc_html__( 'Link to', 'bricks' ), 'type' => 'link', ]; // ICON // Use &{pseudo} so states like :hover apply to the link root, // then target the child icon. $this->controls['icon'] = [ 'group' => 'icon', 'label' => esc_html__( 'Icon', 'bricks' ), 'type' => 'icon', 'css' => [ [ 'selector' => '&{pseudo} .icon > svg', // Needs to be more specific than Dropdown > SVG (@since 1.9.8) ], ], ]; $this->controls['iconSize'] = [ 'group' => 'icon', 'label' => esc_html__( 'Size', 'bricks' ), 'type' => 'number', 'units' => true, 'css' => [ [ 'selector' => '&{pseudo} .icon > i', 'property' => 'font-size', ], [ 'selector' => '&{pseudo} .icon > svg', 'property' => 'width', ], [ 'selector' => '&{pseudo} .icon > svg', 'property' => 'height', ], ], 'required' => [ 'icon.icon', '!=', '' ], ]; $this->controls['iconWidth'] = [ 'group' => 'icon', 'label' => esc_html__( 'Width', 'bricks' ), 'type' => 'number', 'units' => true, 'css' => [ [ 'selector' => '&{pseudo} .icon', 'property' => 'width', ], ], 'required' => [ 'icon.icon', '!=', '' ], ]; $this->controls['iconHeight'] = [ 'group' => 'icon', 'label' => esc_html__( 'Height', 'bricks' ), 'type' => 'number', 'units' => true, 'css' => [ [ 'selector' => '&{pseudo} .icon', 'property' => 'height', ], ], 'required' => [ 'icon.icon', '!=', '' ], ]; $this->controls['iconColor'] = [ 'group' => 'icon', 'label' => esc_html__( 'Color', 'bricks' ), 'type' => 'color', 'css' => [ [ 'selector' => '&{pseudo} .icon', 'property' => 'color', ], [ 'selector' => '&{pseudo} .icon', 'property' => 'fill', ], ], 'required' => [ 'icon.icon', '!=', '' ], ]; $this->controls['iconBackground'] = [ 'group' => 'icon', 'label' => esc_html__( 'Background color', 'bricks' ), 'type' => 'color', 'css' => [ [ 'selector' => '&{pseudo} .icon', 'property' => 'background-color', ], ], 'required' => [ 'icon.icon', '!=', '' ], ]; $this->controls['iconBorder'] = [ 'group' => 'icon', 'label' => esc_html__( 'Border', 'bricks' ), 'type' => 'border', 'css' => [ [ 'selector' => '&{pseudo} .icon', 'property' => 'border', ], [ 'selector' => '&{pseudo} .icon', 'property' => 'overflow', 'value' => 'hidden', ], ], 'required' => [ 'icon.icon', '!=', '' ], ]; $this->controls['iconPosition'] = [ 'group' => 'icon', 'label' => esc_html__( 'Position', 'bricks' ), 'type' => 'select', 'options' => $this->control_options['iconPosition'], 'inline' => true, 'placeholder' => esc_html__( 'Left', 'bricks' ), 'required' => [ 'icon', '!=', '' ], 'css' => [ [ 'selector' => '', 'property' => 'flex-direction', 'value' => 'row-reverse', 'required' => 'right', ], ], ]; $this->controls['gap'] = [ 'group' => 'icon', 'label' => esc_html__( 'Gap', 'bricks' ), 'type' => 'number', 'units' => true, 'required' => [ 'icon', '!=', '' ], 'css' => [ [ 'selector' => '', 'property' => 'gap', ], ], ]; } public function render() { $settings = $this->settings; $text = isset( $settings['text'] ) ? $this->render_dynamic_data( $settings['text'] ) : null; $link = ! empty( $settings['link'] ) ? $settings['link'] : ''; $icon = ! empty( $settings['icon'] ) ? self::render_icon( $settings['icon'] ) : ''; $tag = $this->tag; if ( $link ) { $this->set_link_attributes( '_root', $link ); } else { $tag = 'span'; } echo "<{$tag} {$this->render_attributes( '_root' )}>"; if ( $icon ) { echo '<span class="icon">' . $icon . '</span>'; if ( $text !== null ) { echo '<span class="text">' . $text . '</span>'; } } elseif ( $text !== null ) { echo $text; } echo "</{$tag}>"; } public static function _render_builder() { ?> <script type="text/x-template" id="tmpl-bricks-element-text-link"> <component v-if="settings?.icon?.icon || settings?.icon?.svg" :is="settings.link ? 'a' : 'span'"> <span class="icon"> <icon-svg :iconSettings="settings.icon"/> </span> <contenteditable tag="span" class="text" :name="name" controlKey="text" toolbar="style align link" lineBreak="br" :settings="settings"/> </component> <contenteditable v-else :tag="settings.link ? 'a' : 'span'" :name="name" controlKey="text" toolbar="style align link" lineBreak="br" :settings="settings"/> </script> <?php } }
修改文件时间
将文件时间修改为当前时间的前一年
删除文件