/home/vianto5/ceibaresidencial.mx/wp-content/plugins/wpforms/src/Pro/Admin/Builder
NameSizeModeActions
Notifications/-0755rm
Settings/-0755rm
AntiSpam.php9820644editdlrm
Builder.php63620644editdlrm
LicenseAlert.php46780644editdlrm
Payments.php27500644editdlrm
PurgeEntries.php23390644editdlrm
Edit: /home/vianto5/ceibaresidencial.mx/wp-content/plugins/wpforms/src/Pro/Admin/Builder/Builder.php (6362B)
hooks(); } /** * Hooks. * * @since 1.7.6 */ private function hooks(): void { // Terminate initialization if not in the builder. if ( ! wpforms_is_admin_page( 'builder' ) ) { return; } add_filter( 'wpforms_builder_strings', [ $this, 'form_builder_strings' ], 10, 2 ); add_filter( 'wpforms_builder_js_modules', [ $this, 'add_js_modules' ] ); add_action( 'wpforms_builder_print_footer_scripts', [ $this, 'builder_templates' ] ); add_action( 'wpforms_builder_enqueues', [ $this, 'builder_enqueues' ] ); } /** * Append additional strings for form builder. * * @since 1.7.6 * * @param array $strings List of strings. * @param object $form CPT of the form. * * @return array * @noinspection PhpUnusedParameterInspection */ public function form_builder_strings( $strings, $form ): array { // phpcs:ignore Generic.CodeAnalysis.UnusedFunctionParameter.FoundAfterLastUsed $strings['notification_clone'] = esc_html__( ' - clone', 'wpforms' ); $strings['notification_by_status_enable_alert'] = wp_kses( /* translators: %1$s - payment provider completed payments. Example: "PayPal Standard completed payments". */ __( '

You have just enabled this notification for %1$s. Please note that this email notification will only send for %1$s.

If you\'d like to set up additional notifications for this form, please see our tutorial.

', 'wpforms' ), [ 'p' => [], 'strong' => [], 'a' => [ 'href' => [], 'rel' => [], 'target' => [], ], ] ); $strings['notification_by_status_switch_alert'] = wp_kses( /* translators: %1$s - payment provider completed payments. Example: "PayPal Standard completed payments", %2$s - disabled Payment provider completed payments. */ __( '

You have just disabled the notification for %2$s and enabled the notification for %1$s. Please note that this email notification will only send for %1$s.

If you\'d like to set up additional notifications for this form, please see our tutorial.

', 'wpforms' ), [ 'p' => [], 'strong' => [], 'a' => [ 'href' => [], 'rel' => [], 'target' => [], ], ] ); return $strings; } /** * Used to register the templates for setting blocks inside form builder. * * @since 1.7.6 */ public function builder_templates() { $conditional_logic_tooltip = '' . esc_html__( 'How to use Conditional Logic', 'wpforms' ) . ''; ?>