Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > > forminator > > library
Operation : Linux premium131.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 Software : Apache Server IP : 162.0.232.56 | Your IP: 216.73.216.111 Domains : 1034 Domain(s) Permission : [ 0755 ]
Name | Type | Size | Last Modified | Actions |
---|---|---|---|---|
abstracts | Directory | - | - | |
addon | Directory | - | - | |
calculator | Directory | - | - | |
external | Directory | - | - | |
field-autofill-providers | Directory | - | - | |
fields | Directory | - | - | |
gateways | Directory | - | - | |
helpers | Directory | - | - | |
lib | Directory | - | - | |
mixpanel | Directory | - | - | |
model | Directory | - | - | |
modules | Directory | - | - | |
protection | Directory | - | - | |
render | Directory | - | - | |
class-api.php | File | 55565 bytes | March 03 2025 16:08:12. | |
class-autofill-loader.php | File | 6973 bytes | September 02 2024 15:32:28. | |
class-captcha-verification.php | File | 3739 bytes | April 14 2025 14:55:34. | |
class-core.php | File | 24198 bytes | May 19 2025 19:14:58. | |
class-database-tables.php | File | 5302 bytes | September 02 2024 15:32:28. | |
class-export-result.php | File | 2628 bytes | September 02 2024 15:32:28. | |
class-export.php | File | 62263 bytes | March 17 2025 17:29:02. | |
class-form-fields.php | File | 5115 bytes | February 03 2025 17:11:02. | |
class-forminator-hub-connector.php | File | 9488 bytes | July 14 2025 15:42:34. | |
class-geo.php | File | 4487 bytes | September 02 2024 15:32:28. | |
class-integration-loader.php | File | 19792 bytes | February 03 2025 17:11:02. | |
class-loader.php | File | 2597 bytes | February 03 2025 17:11:02. | |
class-migration.php | File | 29191 bytes | December 24 2024 20:31:58. | |
class-modules.php | File | 2028 bytes | September 02 2024 15:32:28. | |
class-page-cache.php | File | 8242 bytes | September 02 2024 15:32:28. | |
class-protection.php | File | 1059 bytes | September 02 2024 15:32:28. | |
class-reports.php | File | 7366 bytes | February 03 2025 17:11:02. | |
class-shortcode-generator.php | File | 16820 bytes | November 25 2024 21:22:22. | |
class-template-api.php | File | 7716 bytes | March 03 2025 16:08:12. | |
class-upgrade.php | File | 1535 bytes | February 03 2025 17:11:02. |
<?php /** * Forminator Template API * * @package Forminator */ /** * Class Forminator_Template_API */ class Forminator_Template_API { /** * API key * * @var string */ private static ?string $api_key = null; /** * Singleton instance * * @var Forminator_Template_API */ private static ?Forminator_Template_API $instance = null; /** * Get instance of this class. * * @return Forminator_Template_API */ public static function get_instance(): Forminator_Template_API { if ( is_null( self::$instance ) ) { self::$instance = new self(); } return self::$instance; } /** * Constructor */ private function __construct() {} /** * Get API key * * @return string */ private static function get_api_key() { if ( is_null( self::$api_key ) ) { if ( class_exists( 'WPMUDEV_Dashboard' ) ) { self::$api_key = WPMUDEV_Dashboard::$api->get_key(); } elseif ( Forminator_Hub_Connector::hub_connector_connected() ) { self::$api_key = \WPMUDEV\Hub\Connector\API::get()->get_api_key(); } } return self::$api_key; } /** * Check if connected to Hub * * @return bool */ public static function is_connected(): bool { return FORMINATOR_PRO && ! empty( self::get_api_key() ); } /** * Get templates * * @param bool $is_official - official or custom cloud templates. * @param int $page_number - page number. * @param string $category - template category. * @param string $search - search term. * @return array */ public static function get_templates( bool $is_official, int $page_number = 0, string $category = '', string $search = '' ): array { /** * Filter templates per page * * @param int $per_page - templates per page. */ $per_page = apply_filters( 'forminator_templates_per_page', 100 ); $args = array( 'is_official' => $is_official ? 1 : 0, 'per_page' => $per_page, ); if ( $is_official ) { $args['order_by'] = 'name'; $args['order'] = 'ASC'; } if ( $category ) { $args['category'] = $category; } if ( $search ) { $args['search'] = $search; } if ( $page_number ) { $args['page'] = $page_number; } $templates = self::request( 'api/hub/v1/forminator-templates', 'GET', $args ); $templates = self::prepare_templates_structure( $templates ); /** * Filter templates * * @param array $templates - templates. * @param bool $is_official - official or custom templates. * @param int $page_number - page number. * @param string $search - search term. * @param string $category - template category. */ return apply_filters( 'forminator_templates', $templates, $is_official, $page_number, $search, $category ); } /** * Get template * * @param int $id - template id. * * @return array */ public static function get_template( int $id ): array { $template = self::request( 'api/hub/v1/forminator-templates/' . $id, 'GET' ); return self::prepare_template_structure( $template ); } /** * Prepare templates structure * * @param array $templates - templates. * * @return array */ private static function prepare_templates_structure( array $templates ): array { foreach ( $templates as $key => $template ) { $templates[ $key ] = self::prepare_template_structure( $template ); } return $templates; } /** * Prepare template structure * * @param array $template - template. * * @return array */ private static function prepare_template_structure( array $template ): array { if ( empty( $template ) ) { return $template; } $template['id'] = $template['template_id']; $template['category'] = $template['category']['slug']; $template['screenshot'] = $template['thumbnail']['original'] ?? ''; $template['thumbnail'] = $template['thumbnail']['original'] ?? ''; $template['pro'] = true; return $template; } /** * Create template * * @param string $name - template name. * @param string $json - template config. * @param string $description - template description. * * @return array */ public static function create_template( string $name, string $json, string $description = '' ): array { if ( ! forminator_is_user_allowed( 'forminator-templates' ) ) { return array(); } $args = self::prepare_template_args( $name, $json, $description ); $response = self::request( 'api/hub/v1/forminator-templates', 'POST', $args ); return self::prepare_template_structure( $response ); } /** * Update template * * @param int $id - template id. * @param string $name - template name. * @param string $json - template config. * @param string $description - template description. * * @return array */ public static function update_template( int $id, string $name, string $json, string $description = '' ): array { if ( ! forminator_is_user_allowed( 'forminator-templates' ) ) { return array(); } $args = self::prepare_template_args( $name, $json, $description ); $response = self::request( 'api/hub/v1/forminator-templates/' . $id, 'POST', $args ); return self::prepare_template_structure( $response ); } /** * Prepare update template args * * @param string $name - template name. * @param string $json - template config. * @param string $description - template description. * * @return array */ private static function prepare_template_args( string $name, string $json, string $description ): array { $args = array(); if ( $json ) { $args = array( 'config' => $json, ); } if ( $name ) { $args['name'] = $name; } if ( $description ) { $args['description'] = $description; } return $args; } /** * Delete template * * @param int $id - template id. * * @return bool */ public static function delete_template( int $id ): bool { if ( ! forminator_is_user_allowed( 'forminator-templates' ) ) { return false; } $response = self::request( 'api/hub/v1/forminator-templates/' . $id, 'DELETE' ); return $response['removed'] ?? false; } /** * Get template categories * * @return array */ public static function get_categories(): array { $categories = self::request( 'api/hub/v1/forminator-templates/categories', 'GET' ); return $categories; } /** * Remote request * * @param string $endpoint - API endpoint. * @param string $method - HTTP method. * @param array $data - request data. * * @return array */ private static function request( string $endpoint, string $method, array $data = array() ): array { $base = 'https://wpmudev.com/'; // Support custom API base. if ( defined( 'WPMUDEV_CUSTOM_API_SERVER' ) && ! empty( WPMUDEV_CUSTOM_API_SERVER ) ) { $base = trailingslashit( WPMUDEV_CUSTOM_API_SERVER ); } $url = $base . $endpoint; $args = array( 'method' => $method, ); if ( class_exists( 'WPMUDEV_Dashboard' ) && method_exists( WPMUDEV_Dashboard::$api, 'get_site_id' ) ) { $data['site_id'] = WPMUDEV_Dashboard::$api->get_site_id(); } elseif ( Forminator_Hub_Connector::hub_connector_logged_in() ) { $data['site_id'] = \WPMUDEV\Hub\Connector\Data::get()->hub_site_id(); } if ( 'GET' === $method ) { $url = add_query_arg( $data, $url ); } else { $args['body'] = $data; } $api_key = self::get_api_key(); if ( $api_key ) { $args['headers'] = array( 'Authorization' => $api_key, ); } $response = wp_remote_request( $url, $args ); if ( is_wp_error( $response ) || 200 !== wp_remote_retrieve_response_code( $response ) ) { return array(); } $body = wp_remote_retrieve_body( $response ); return json_decode( $body, true ); } }
SILENT KILLER Tool