API Documentation
Table of Contents
Classes
- Ar_Model_Viewer_For_Woocommerce_Admin_Pro
- The admin-specific functionality of the plugin.
- Ar_Model_Viewer_For_Woocommerce_Admin_Product
- The admin-specific functionality in product edit and new page of the plugin.
- Ar_Model_Viewer_For_Woocommerce_Admin_Settings
- The admin-specific functionality in Settings of the plugin.
- Ar_Model_Viewer_For_Woocommerce_Admin
- The admin-specific functionality of the plugin.
- MeshyApi
- Handles interactions with the Meshy API.
- Ar_Model_Viewer_For_Woocommerce_Widget
- The admin-specific functionality of the plugin.
- Ar_Model_Viewer_For_Woocommerce_Activator
- Fired during plugin activation.
- Ar_Model_Viewer_For_Woocommerce_Deactivator
- Fired during plugin deactivation.
- Ar_Model_Viewer_For_Woocommerce_I18n
- Define the internationalization functionality.
- Ar_Model_Viewer_For_Woocommerce_Loader
- Register all actions and filters for the plugin.
- Ar_Model_Viewer_For_Woocommerce_Logger
- The logger functionality of the plugin.
- Ar_Model_Viewer_For_Woocommerce
- The core plugin class.
- Ar_Model_Viewer_For_Woocommerce_Public_Shortcode
- The public-facing shortcode functionality of the plugin.
- Ar_Model_Viewer_For_Woocommerce_Public_Tab
- The public-facing tab functionality of the plugin.
- Ar_Model_Viewer_For_Woocommerce_Public
- The public-facing functionality of the plugin.
Constants
- AR_MODEL_VIEWER_FOR_WOOCOMMERCE_BASE_NAME = \plugin_basename(__FILE__)
- Define the Plugin basename
- AR_MODEL_VIEWER_FOR_WOOCOMMERCE_VERSION = '2.0.0'
- Current plugin version.
Functions
- ar_model_viewer_for_woocommerce_fs() : mixed
- ar_model_viewer_for_woocommerce_activate() : mixed
- The code that runs during plugin activation.
- ar_model_viewer_for_woocommerce_deactivate() : mixed
- The code that runs during plugin deactivation.
- ar_model_viewer_for_woocommerce_uninstall() : mixed
- ar_model_viewer_for_woocommerce_run() : mixed
- Begins execution of the plugin.
Constants
AR_MODEL_VIEWER_FOR_WOOCOMMERCE_BASE_NAME
Define the Plugin basename
public
mixed
AR_MODEL_VIEWER_FOR_WOOCOMMERCE_BASE_NAME
= \plugin_basename(__FILE__)
AR_MODEL_VIEWER_FOR_WOOCOMMERCE_VERSION
Current plugin version.
public
mixed
AR_MODEL_VIEWER_FOR_WOOCOMMERCE_VERSION
= '2.0.0'
Start at version 1.0.0 and use SemVer - https://semver.org Rename this for your plugin and update it as you release new versions.
Functions
ar_model_viewer_for_woocommerce_fs()
ar_model_viewer_for_woocommerce_fs() : mixed
ar_model_viewer_for_woocommerce_activate()
The code that runs during plugin activation.
ar_model_viewer_for_woocommerce_activate() : mixed
This action is documented in includes/class-ar-model-viewer-for-woocommerce-activator.php Full security checks are performed inside the class.
ar_model_viewer_for_woocommerce_deactivate()
The code that runs during plugin deactivation.
ar_model_viewer_for_woocommerce_deactivate() : mixed
This action is documented in includes/class-ar-model-viewer-for-woocommerce-deactivator.php Full security checks are performed inside the class.
ar_model_viewer_for_woocommerce_uninstall()
ar_model_viewer_for_woocommerce_uninstall() : mixed
ar_model_viewer_for_woocommerce_run()
Begins execution of the plugin.
ar_model_viewer_for_woocommerce_run() : mixed
Since everything within the plugin is registered via hooks, kicking off the plugin from this point in the file does not affect the page life cycle.
Generally you will want to hook this function, instead of callign it globally. However since the purpose of your plugin is not known until you write it, we include the function globally.