| Server IP : 87.229.120.60 / Your IP : 216.73.216.86 Web Server : Apache System : Linux outside 5.4.8_Algonet_ZeroMAC_0.9.4.8 #6 SMP Mon Feb 3 20:36:07 CET 2020 x86_64 User : server ( 1002) PHP Version : 8.3.20 Disable Function : exec,passthru,shell_exec,system,proc_open,popen,curl_multi_exec,parse_ini_file,show_source MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/faktorteam/www/wp-content/plugins/wpforms-lite/src/Admin/Education/Builder/ |
Upload File : |
<?php
namespace WPForms\Admin\Education\Builder;
use \WPForms\Admin\Education\AddonsListBase;
/**
* Base class for Builder/Settings, Builder/Providers, Builder/Payments Education features.
*
* @since 1.6.6
*/
abstract class Panel extends AddonsListBase {
/**
* Panel slug. Should be redefined in the real Builder/Panel class.
*
* @since 1.6.6
*
* @return string
**/
abstract protected function get_name();
/**
* Indicate if current Education feature is allowed to load.
*
* @since 1.6.6
*
* @return bool
*/
public function allow_load() {
// Load only in the Form Builder.
return wpforms_is_admin_page( 'builder' ) && ! empty( $this->get_name() );
}
/**
* Get addons for the current panel.
*
* @since 1.6.6
*/
protected function get_addons() {
return $this->addons->get_by_category( $this->get_name() );
}
/**
* Template name for rendering single addon item.
*
* @since 1.6.6
*
* @return string
*/
protected function get_single_addon_template() {
return 'education/builder/' . $this->get_name() . '-item';
}
/**
* Display addons.
*
* @since 1.6.6
*/
public function display_addons() {
$this->single_addon_template = $this->get_single_addon_template();
parent::display_addons();
}
}