/home/techb158/balacoffee.com/wp-content/plugins/wpforms/src/Admin/Education
NameSizeModeActions
Admin/-0755rm
Builder/-0755rm
AddonsItemBase.php16080644editdlrm
AddonsListBase.php15180644editdlrm
Core.php78540644editdlrm
EducationInterface.php4140644editdlrm
Fields.php105570644editdlrm
Edit: /home/techb158/balacoffee.com/wp-content/plugins/wpforms/src/Admin/Education/AddonsItemBase.php (1608B)
allow_load() ) { return; } // Store the instance of the Education core class. $this->education = wpforms()->get( 'education' ); // Store the instance of the Education\Addons class. $this->addons = wpforms()->get( 'addons' ); // Define hooks. $this->hooks(); } /** * Hooks. * * @since 1.6.6 */ abstract public function hooks(); /** * Display single addon item. * * @since 1.6.6 * * @param array $addon Addon data. */ protected function display_single_addon( $addon ) { if ( empty( $addon ) ) { return; } echo wpforms_render( // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped $this->single_addon_template, $addon, true ); } }