PHP require_once函数
<?php /** * Footer class for Header Footer Grid. * * Name: Header Footer Grid * Author: Bogdan Preda <[email protected]> * * @version 1.0.0 * @package HFG */ namespace HFG\Core\Builder; use HFG\Main; use Neve\Core\Theme_Info; /** * Class Footer * * @package HFG\Core\Builder */ class Footer extends Abstract_Builder { use Theme_Info; /** * Builder name. */ const BUILDER_NAME = 'footer'; /** * Footer constructor. * * @since 1.0.0 * @access public */ public function init() { $this->set_property( 'title', __( 'Footer', 'neve' ) ); $this->set_property( 'columns_layout', true ); $this->set_property( 'description', apply_filters( 'hfg_footer_panel_description', sprintf( /* translators: %s link to documentation */ esc_html__( 'Design your %1$s by dragging, dropping and resizing all the elements in real-time. %2$s.', 'neve' ), /* translators: %s builder type */ $this->get_property( 'title' ), /* translators: %s link text */ sprintf( '<br/><a target="_blank" rel="external noopener noreferrer" href="https://docs.themeisle.com/article/946-neve-doc#footer-builder"><span class="screen-reader-text">%s</span><svg xmlns="http://www.w3.org/2000/svg" focusable="false" role="img" viewBox="0 0 512 512" width="12" height="12" style="margin-right: 5px;"><path fill="currentColor" d="M432 320H400a16 16 0 0 0-16 16V448H64V128H208a16 16 0 0 0 16-16V80a16 16 0 0 0-16-16H48A48 48 0 0 0 0 112V464a48 48 0 0 0 48 48H400a48 48 0 0 0 48-48V336A16 16 0 0 0 432 320ZM488 0h-128c-21.4 0-32 25.9-17 41l35.7 35.7L135 320.4a24 24 0 0 0 0 34L157.7 377a24 24 0 0 0 34 0L435.3 133.3 471 169c15 15 41 4.5 41-17V24A24 24 0 0 0 488 0Z"/></svg>%s</a>', esc_html__( '(opens in a new tab)', 'neve' ), esc_html__( 'Read full documentation', 'neve' ) ) ) ) ); $this->set_property( 'instructions_array', array( 'description' => sprintf( /* translators: 1: builder, 2: builder symbol */ esc_attr__( 'Welcome to the %1$s builder! Click the %2$s button to add a new component or follow the Quick Links.', 'neve' ), $this->get_property( 'title' ), '+' ), 'quickLinks' => array( 'footer_copyright_content' => array( 'label' => esc_html__( 'Change Copyright', 'neve' ), 'icon' => 'dashicons-nametag', 'url' => $this->has_valid_addons() ? null : tsdk_utmify( 'https://themeisle.com/themes/neve/upgrade/', 'copyright' ), ), 'hfg_footer_layout_bottom_background' => array( 'label' => esc_html__( 'Change Footer Color', 'neve' ), 'icon' => 'dashicons-admin-appearance', ), ), ) ); $this->devices = [ 'desktop' => __( 'Footer', 'neve' ), ]; /** * Fix legacy search widget display in footer * Only applies for versions < 5.8 */ add_filter( 'dynamic_sidebar_params', function ( $params ) { $processed_params = []; $has_legacy_search_style = apply_filters( 'neve_has_legacy_search_style_filter', false ); foreach ( $params as $param ) { if ( isset( $param['before_widget'] ) && strpos( $param['before_widget'], 'widget_search' ) !== false && $has_legacy_search_style === false ) { $param['before_widget'] = '<style type="text/css">.widget_search .search-form .search-submit, .widget_search .search-form .search-field { height: auto; }</style>' . $param['before_widget']; add_filter( 'neve_has_legacy_search_style_filter', '__return_true' ); } array_push( $processed_params, $param ); } return $processed_params; } ); add_action( 'neve_after_slot_component', [ $this, 'add_footer_component' ], 10, 3 ); } /** * Add footer component. * * @param string $builder Builder slug. * @param string $row Row slug. * @param string $slot Slot name. * * @return void */ public function add_footer_component( $builder, $row, $slot ) { if ( $this->has_valid_addons() ) { return; } if ( $builder !== self::BUILDER_NAME ) { return; } if ( $row !== 'bottom' ) { return; } if ( $slot !== 'left' ) { return; } $output = '<div class="builder-item"><div class="item--inner"><div class="component-wrap"><div>'; $output .= sprintf( /* translators: %1$s is Theme Name ( Neve ), %2$s is WordPress */ esc_html__( '%1$s | Powered by %2$s', 'neve' ), wp_kses_post( '<p><a href="https://themeisle.com/themes/neve/" rel="nofollow">Neve</a>' ), wp_kses_post( '<a href="http://wordpress.org" rel="nofollow">WordPress</a></p>' ) ); $output .= '</div></div></div></div>'; echo wp_kses_post( $output ); } /** * Method called via hook. * * @since 1.0.0 * @access public */ public function load_template() { Main::get_instance()->load( 'footer-wrapper' ); } /** * Render builder row. * * @param string $device_id The device id. * @param string $row_id The row id. * @param array $row_details Row data. */ public function render_row( $device_id, $row_id, $row_details ) { Main::get_instance()->load( 'footer-row-wrapper' ); } /** * Get builder id. * * @return string Builder id. */ public function get_id() { return self::BUILDER_NAME; } /** * Overrides parent method to limit rows. * * @return array * @since 1.0.0 * @access protected */ protected function get_rows() { if ( neve_is_new_builder() ) { return [ 'top' => array( 'title' => __( 'Footer Top', 'neve' ), 'description' => $this->get_property( 'description' ), ), 'main' => array( 'title' => __( 'Footer Main', 'neve' ), 'description' => $this->get_property( 'description' ), ), 'bottom' => array( 'title' => __( 'Footer Bottom', 'neve' ), 'description' => $this->get_property( 'description' ), ), ]; } return [ 'top' => array( 'title' => __( 'Footer Top', 'neve' ), 'description' => $this->get_property( 'description' ), ), 'bottom' => array( 'title' => __( 'Footer Bottom', 'neve' ), 'description' => $this->get_property( 'description' ), ), ]; } }
我正在尝试 Michel Fortin 的 PHP-Markdown 库,但在让它在我的服务器上运行时遇到了一些问题。 我已将解析器库文件上传到我的服务器的 / 子文件夹中。我的测试...
我有这样的情况: / 索引.php /init(文件夹) init.php (当然,在这个文件中,我使用 require_once 来表示 db/function/以及您想要放入其中的任何内容) /layout_parts(文件夹)
我在 PHP 网站上的语言切换器上工作。当我使用切换器更改语言时,导航菜单的语言会更改,但是当我尝试导航到另一个页面时 在导航菜单上,...
如何通过使用 require_once 发送数据来链接 php 中的两个文件? [关闭]
我有两个文件,一个以 pdf 格式发送电子邮件。第二种情况是当用户获得 pdf 但当前未将其视为 pdf 文档格式时。我想使用
如何使用 require_once 或 require 在 php 中链接文件?
我有两个文件,一个是文件正在发送电子邮件,第二个是当用户收到文件作为 pdf 文档时。我没有使用任何库作为此 Web 应用程序的业务规则。我该如何处理
在 functions.php 中插入 PHP 文件,然后在 Wordpress 中回显该文件中的变量
在尝试找到解决方案之后,我认为我不够聪明。所以,请帮忙。 这里的想法是:有一个文件(ip.php)检测访问者的国家/城市,在 functions.php(或
require_once的结果是 "No such file or directory "错误。
我是PHP新手。今天我试着要求一个叫 "Ripcord "的PHP库,但它没有工作。我用Composer安装了这个库,使用了这个命令。% composer.phar require darkaonline...
如何允许require_once()到wordpress中的php文件中
我有一个由wordpress制作的网站,我制作了一些我想执行的php文件,由于某种原因,我需要require_once(/wp-includes/class-phpass.php),但是我无法打开所需的错误,。 ..
我在内核类的构造函数中从另一个类创建对象时遇到问题,它给出了致命错误,提示找不到该类,有人可以帮忙吗?我不知道是什么...
最好使用require_once('filename.php')或require_once'filename.php';
这仅仅是样式上的差异,还是使用require_once('filename.php')与require_once'filename.php'的实际负载/效率差异?
我已经创建了一个单独的类来连接到我的数据库,并且该类在单独的PHP文件中:connect.php类connect {函数__construct(){//连接到数据库} ...
[我在wordpress 5.3中正在做,woocommerce的原始代码正在显示此消息警告:require_once(/ home / sitename / public_html / 1):无法打开流:在/ home / sitename / public_html / wp -...中成功>
我想从一个类中创建一个对象...但是这个“致命错误:未捕获的错误:在C:\ xampp \ htdocs \ public_html \ app \ Http \ Kernel.php:26中找不到类'HomeController' :#0 C:\ xampp \ ...
我想将我的功能handleParameters()添加到我的AuthController中,但是我已经“希望在从资源导入服务时找到一个类...但是没有找到它!” HandleParameters.php ...
简单的问题:require_once的范围是全局的吗?例如:
当我遇到一个奇怪的情况时,我正在用PHP编写一个Web应用程序。为了说明我的问题,请考虑这种结构的Web应用程序:/ index.php f1 / f1.php f2 / f2.php ...
require,include,require_once和include_once之间的区别?
在PHP中:我什么时候应该使用require vs. include?我什么时候应该使用require_once和include_once?
通过pear安装邮件后,Require_once停止工作[复制]
所以在我的Ubuntu 16.04服务器上,我的/ var / www / html /目录中有几个.php文件,我会做常规的PHP内容,如数据检索,用户登录等等。我想实现一个邮件。 ..