\function_exists( \DeWittePrins\CoreFunctionality\remove_anonymous_object_filter )
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
/** * Adds a callback function to a filter hook. * * @since 4.7.0 * * @param string $hook_name The name of the filter to add the callback to. * @param callable $callback The callback to be run when the filter is applied. * @param int $priority The order in which the functions associated with a particular filter * are executed. Lower numbers correspond with earlier execution, * and functions with the same priority are executed in the order * in which they were added to the filter. * @param int $accepted_args The number of arguments the function accepts. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:82
/** * Removes a callback function from a filter hook. * * @since 4.7.0 * * @param string $hook_name The filter hook to which the function to be removed is hooked. * @param callable|string|array $callback The callback to be removed from running when the filter is applied. * This method can be called unconditionally to speculatively remove * a callback that may or may not exist. * @param int $priority The exact priority used when adding the original filter callback. * @return bool Whether the callback existed before it was removed. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:189
/** * Checks if a specific callback has been registered for this hook. * * When using the `$callback` argument, this function may return a non-boolean value * that evaluates to false (e.g. 0), so use the `===` operator for testing the return value. * * @since 4.7.0 * * @param string $hook_name Optional. The name of the filter hook. Default empty. * @param callable|string|array|false $callback Optional. The callback to check for. * This method can be called unconditionally to speculatively check * a callback that may or may not exist. Default false. * @return bool|int If `$callback` is omitted, returns boolean for whether the hook has * anything registered. When checking a specific function, the priority * of that hook is returned, or false if the function is not attached. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:227
/** * Checks if any callbacks have been registered for this hook. * * @since 4.7.0 * * @return bool True if callbacks have been registered for the current hook, otherwise false. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:254
/** * Removes all callbacks from the current filter. * * @since 4.7.0 * * @param int|false $priority Optional. The priority number to remove. Default false. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:271
/** * Calls the callback functions that have been added to a filter hook. * * @since 4.7.0 * * @param mixed $value The value to filter. * @param array $args Additional parameters to pass to the callback functions. * This array is expected to include $value at index 0. * @return mixed The filtered value after all hooked functions are applied to it. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:299
/** * Calls the callback functions that have been added to an action hook. * * @since 4.7.0 * * @param array $args Parameters to pass to the callback functions. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:346
/** * Processes the functions hooked into the 'all' hook. * * @since 4.7.0 * * @param array $args Arguments to pass to the hook callbacks. Passed by reference. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:363
/** * Return the current priority level of the currently running iteration of the hook. * * @since 4.7.0 * * @return int|false If the hook is running, return the current priority level. * If it isn't running, return false. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:387
/** * Determines whether an offset value exists. * * @since 4.7.0 * * @link https://www.php.net/manual/en/arrayaccess.offsetexists.php * * @param mixed $offset An offset to check for. * @return bool True if the offset exists, false otherwise. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:462
/** * Retrieves a value at a specified offset. * * @since 4.7.0 * * @link https://www.php.net/manual/en/arrayaccess.offsetget.php * * @param mixed $offset The offset to retrieve. * @return mixed If set, the value at the specified offset, null otherwise. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:477
/** * Sets a value at a specified offset. * * @since 4.7.0 * * @link https://www.php.net/manual/en/arrayaccess.offsetset.php * * @param mixed $offset The offset to assign the value to. * @param mixed $value The value to set. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:492
/** * Unsets a specified offset. * * @since 4.7.0 * * @link https://www.php.net/manual/en/arrayaccess.offsetunset.php * * @param mixed $offset The offset to unset. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:512
/** * Returns the current element. * * @since 4.7.0 * * @link https://www.php.net/manual/en/iterator.current.php * * @return array Of callbacks at current priority. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:527
/** * Moves forward to the next element. * * @since 4.7.0 * * @link https://www.php.net/manual/en/iterator.next.php * * @return array Of callbacks at next priority. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:541
/** * Returns the key of the current element. * * @since 4.7.0 * * @link https://www.php.net/manual/en/iterator.key.php * * @return mixed Returns current priority on success, or NULL on failure */ Defined in <ROOT>/wp-includes/class-wp-hook.php:555
/** * Checks if current position is valid. * * @since 4.7.0 * * @link https://www.php.net/manual/en/iterator.valid.php * * @return bool Whether the current position is valid. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:569
/** * Rewinds the Iterator to the first element. * * @since 4.7.0 * * @link https://www.php.net/manual/en/iterator.rewind.php */ Defined in <ROOT>/wp-includes/class-wp-hook.php:581
/** * Handles resetting callback priority keys mid-iteration. * * @since 4.7.0 * * @param false|int $new_priority Optional. The priority of the new filter being added. Default false, * for no priority being added. * @param bool $priority_existed Optional. Flag for whether the priority already existed before the new * filter was added. Default false. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:114
/** * Normalizes filters set up before WordPress has initialized to WP_Hook objects. * * The `$filters` parameter should be an array keyed by hook name, with values * containing either: * * - A `WP_Hook` instance * - An array of callbacks keyed by their priorities * * Examples: * * $filters = array( * 'wp_fatal_error_handler_enabled' => array( * 10 => array( * array( * 'accepted_args' => 0, * 'function' => function() { * return false; * }, * ), * ), * ), * ); * * @since 4.7.0 * * @param array $filters Filters to normalize. See documentation above for details. * @return WP_Hook[] Array of normalized filters. */ Defined in <ROOT>/wp-includes/class-wp-hook.php:424
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
drwxr-xr-x 1737 1744 4KB Nov 29 2018 /home/hetgou6/public_html/wp-content/plugins/storefront-product-sharing
/** * Constructor function. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:83
/** * Load the localisation file. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:118
/** * Cloning is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:127
/** * Unserializing instances of this class is forbidden. * * @since 1.0.0 */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:136
/** * Installation. * Runs on activation. Logs the version number and assigns a notice message to a WordPress option. * @access public * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:147
/** * Setup all the things. * Only executes if Storefront or a child theme using Storefront as a parent is active and the extension specific filter returns true. * Child themes can disable this extension using the storefront_extension_boilerplate_enabled filter * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:168
/** * Adds custom classes to the array of body classes. * * @since 1.0.6 * @param array $classes Classes for the body element. * @return array */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:190
/** * Storefront install * If the user activates the plugin while having a different parent theme active, prompt them to install Storefront. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:206
/** * Enqueue CSS. * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:217
/** * Product sharing links */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:230
/** * Log the plugin version number. * @access private * @since 1.0.0 * @return void */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:157
/** * Main Storefront_Product_Sharing Instance * * Ensures only one instance of Storefront_Product_Sharing is loaded or can be loaded. * * @since 1.0.0 * @static * @see Storefront_Product_Sharing() * @return Main Storefront_Product_Sharing instance */ Defined in <ROOT>/wp-content/plugins/storefront-product-sharing/storefront-product-sharing.php:106
prio | accepted_args | type | class | method | callback | |
---|---|---|---|---|---|---|
0 | 10 | 1 | function | woocommerce_output_product_data_tabs | woocommerce_output_product_data_tabs | |
1 | 15 | 1 | function | storefront_upsell_display | storefront_upsell_display | |
2 | 20 | 1 | function | woocommerce_output_related_products | woocommerce_output_related_products | |
3 | 30 | 1 | function | storefront_single_product_pagination | storefront_single_product_pagination |