version = BORDERLESS__VERSION; } else { $this->version = '1.0.0'; } $this->plugin_name = 'borderless'; $this->borderless_load_dependencies(); $this->borderless_define_public_hooks(); } /** * Define the core functionality of the plugin. * * Set the plugin name and the plugin version that can be used throughout the plugin. * Load the dependencies, define the locale, and set the hooks for the admin area and * the public-facing side of the site. * * @since 1.0.0 */ public function borderless_load_dependencies() { $options = get_option( 'borderless' ); /** * The class responsible for orchestrating the actions and filters of the * core plugin. */ require_once( BORDERLESS__INC . "/class-borderless-loader.php" ); /** * The class responsible for defining all actions that occur in the public-facing * side of the site. */ require_once( BORDERLESS__INC . "/class-borderless-public.php" ); require_once( BORDERLESS__INC . "/templates/dashboard.php" ); require_once( BORDERLESS__INC . "/license/license.php" ); require_once( BORDERLESS__INC . "/templates/system-info.php" ); require_once( BORDERLESS__INC . "/icon-manager/icon-manager.php" ); require_once( BORDERLESS__INC . "/custom-post-types/custom-post-types.php" ); require_once( BORDERLESS__INC . "/svg/svg.php" ); require_once( BORDERLESS__ELEMENTOR . "/elementor.php" ); require_once( BORDERLESS__WPBAKERY . "/wpbakery.php" ); require_once( BORDERLESS__INC . "/widgets/button.php" ); require_once( BORDERLESS__INC . "/widgets/contact-info.php" ); require_once( BORDERLESS__INC . "/widgets/divider.php" ); require_once( BORDERLESS__INC . "/widgets/search.php" ); require_once( BORDERLESS__INC . "/widgets/social-media.php" ); require_once( BORDERLESS__INC . "/widgets/spacer.php" ); require_once( BORDERLESS__INC . "/helper.php" ); require_once( BORDERLESS__INC . "/library/templates/templates.php" ); if ( isset( $options['related_posts'] ) ) { require_once( BORDERLESS__RELATED_POSTS . "/related-posts.php" ); } $this->loader = new Borderless_Loader(); } /** * Register all of the hooks related to the public-facing functionality * of the plugin. * * @since 1.0.0 * @access private */ private function borderless_define_public_hooks() { $plugin_public = new Borderless_Public( $this->get_plugin_name(), $this->get_version() ); $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_styles' ); $this->loader->add_action( 'wp_enqueue_scripts', $plugin_public, 'enqueue_scripts' ); } /** * Run the loader to execute all of the hooks with WordPress. * * @since 1.0.0 */ public function run() { $this->loader->run(); } /** * The name of the plugin used to uniquely identify it within the context of * WordPress and to define internationalization functionality. * * @since 1.0.0 * @return string The name of the plugin. */ public function get_plugin_name() { return $this->plugin_name; } /** * The reference to the class that orchestrates the hooks with the plugin. * * @since 1.0.0 * @return Borderless_Loader Orchestrates the hooks of the plugin. */ public function get_loader() { return $this->loader; } /** * Retrieve the version number of the plugin. * * @since 1.0.0 * @return string The version number of the plugin. */ public function get_version() { return $this->version; } }