GRAYBYTE WORDPRESS FILE MANAGER9640

Server IP : 198.54.121.189 / Your IP : 216.73.216.112
System : Linux premium69.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
PHP Version : 7.4.33
Disable Function : NONE
cURL : ON | WGET : ON | Sudo : OFF | Pkexec : OFF
Directory : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/essential-blocks/includes/Blocks/
Upload Files :
Current_dir [ Writeable ] Document_root [ Writeable ]

Command :


Current File : /home/giriqfky/trustyourlawyer.com/wp-content/plugins/essential-blocks/includes/Blocks//WPForms.php
<?php

namespace EssentialBlocks\Blocks;

use EssentialBlocks\Core\Block;
use EssentialBlocks\Utils\Helper;

class WPForms extends Block
{
    protected $attributes = [
        'blockId' => [
            'type' => 'string'
         ],
        'formId'  => [
            'type' => 'string'
         ]
     ];

    /**
     * Unique name of the block.
     *
     * @return string
     */
    public function get_name()
    {
        return 'wpforms';
    }

    public function can_enable()
    {
        $active_plugins = Helper::get_active_plugin_list();
        if ( in_array( 'wpforms-lite/wpforms.php', $active_plugins ) || in_array( 'wpforms/wpforms.php', $active_plugins ) ) {
            return true;
        }
        return false;
    }

    /**
     * Get WPForms List
     *
     * @return array
     */
    public static function form_list()
    {
        $options = [  ];

        if ( class_exists( '\WPForms\WPForms' ) ) {
            $args = [
                'post_type'      => 'wpforms',
                'posts_per_page' => -1
             ];

            $contact_forms = get_posts( $args );

            if ( ! empty( $contact_forms ) && ! is_wp_error( $contact_forms ) ) {
                $options[ 0 ][ 'value' ] = '';
                $options[ 0 ][ 'label' ] = esc_html__( 'Select a WPForm', 'essential-blocks' );
                foreach ( $contact_forms as $key => $post ) {
                    $options[ $key + 1 ][ 'value' ] = $post->ID;
                    $options[ $key + 1 ][ 'label' ] = $post->post_title;
                }
            }
        } else {
            $options[ 0 ] = esc_html__( 'Create a Form First', 'essential-blocks' );
        }

        return $options;
    }

    /**
     * Block render callback.
     *
     * @param mixed $attributes
     * @param mixed $content
     * @return mixed
     */
    public function render_callback( $attributes, $content )
    {
        if ( ! class_exists( '\WPForms\WPForms' ) || is_admin() ) {
            return;
        }

        ob_start();
        Helper::views(
            'forms/wpforms',
            wp_parse_args(
                $attributes,
                [
                    'classHook'           => '',
                    'formId'              => '',
                    'customCheckboxStyle' => false,
                    'showLabels'          => true,
                    'showPlaceholder'     => true,
                    'showErrorMessage'    => true,
                    'formAlignment'       => 'none',
                    'wrapperClasses'      => [ 'eb-wpforms-wrapper' ],
                    'alignment'           => [
                        'left'   => 'eb-wpforms-alignment-left',
                        'center' => 'eb-wpforms-alignment-center',
                        'right'  => 'eb-wpforms-alignment-right'
                     ],
                    'block_object'        => $this
                 ]
            )
        );
        return ob_get_clean();
    }
}

[ Back ]
Name
Size
Last Modified
Owner / Group
Permissions
Options
..
--
July 10 2025 04:32:25
giriqfky / giriqfky
0755
.htaccess
0.41 KB
July 10 2025 04:32:25
giriqfky / giriqfky
0644
Accordion.php
1.034 KB
February 26 2025 16:22:10
giriqfky / giriqfky
0644
AccordionItem.php
0.327 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
AddToCart.php
3.433 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
AdvancedHeading.php
4.59 KB
December 24 2024 15:38:54
giriqfky / giriqfky
0644
AdvancedImage.php
1.937 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
AdvancedNavigation.php
0.687 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
AdvancedTabs.php
0.865 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
AdvancedVideo.php
0.997 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Breadcrumbs.php
11.373 KB
January 12 2025 17:13:54
giriqfky / giriqfky
0644
Button.php
0.343 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
CallToAction.php
0.356 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Column.php
0.215 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
CountDown.php
0.591 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
DualButton.php
0.65 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
FeatureList.php
0.324 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
FlipBox.php
0.633 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
FluentForms.php
3.774 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Form.php
5.722 KB
June 29 2025 14:07:42
giriqfky / giriqfky
0644
FormTextField.php
0.24 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
GoogleMap.php
2.554 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Icon.php
0.315 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ImageComparison.php
0.605 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
ImageGallery.php
2.264 KB
December 24 2024 17:17:58
giriqfky / giriqfky
0644
InfoBox.php
0.365 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
InstagramFeed.php
5.891 KB
February 26 2025 16:22:10
giriqfky / giriqfky
0644
InteractivePromo.php
0.313 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
LottieAnimation.php
0.594 KB
February 18 2025 14:31:10
giriqfky / giriqfky
0644
NftGallery.php
0.634 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Notice.php
0.566 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
NumberCounter.php
0.584 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
Openverse.php
0.469 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ParallaxSlider.php
0.648 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
PopUp.php
0.61 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
PostBlock.php
1.572 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
PostCarousel.php
4.623 KB
May 19 2025 15:07:08
giriqfky / giriqfky
0644
PostGrid.php
5.75 KB
January 12 2025 17:13:54
giriqfky / giriqfky
0644
PostMeta.php
3.512 KB
December 24 2024 15:38:54
giriqfky / giriqfky
0644
PricingTable.php
0.325 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ProductDetails.php
3.514 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ProductImages.php
2.835 KB
May 08 2025 15:01:12
giriqfky / giriqfky
0644
ProductPrice.php
4.752 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ProductRating.php
2.97 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ProgressBar.php
0.59 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Row.php
0.444 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ShapeDivider.php
0.588 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Slider.php
0.973 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Social.php
0.344 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
SocialShare.php
3.889 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Tab.php
0.209 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
TableOfContents.php
16.936 KB
June 01 2025 14:07:44
giriqfky / giriqfky
0644
Taxonomy.php
4.897 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
TeamMember.php
0.353 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Testimonial.php
0.364 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
Text.php
2.48 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
ToggleContent.php
0.599 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
TypingText.php
0.58 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
WPForms.php
2.921 KB
October 30 2024 16:05:38
giriqfky / giriqfky
0644
WooProductGrid.php
8.389 KB
March 24 2025 12:57:24
giriqfky / giriqfky
0644
Wrapper.php
0.351 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644
price.php
0.233 KB
August 27 2024 16:37:06
giriqfky / giriqfky
0644

GRAYBYTE WORDPRESS FILE MANAGER @ 2025
CONTACT ME
Static GIF