19 lines
570 B
PHP
19 lines
570 B
PHP
<?php
|
|
|
|
/**
|
|
* An alternative class to enable premium functionality for ET Marketplace
|
|
* which is disabled by Freemius SDK.
|
|
*/
|
|
class Lwp_Cfdb_Freemius_Alt {
|
|
/**
|
|
* Dummy method to prevent breaking when Freemius SDK is removed.
|
|
*
|
|
* @param string $tag The name of the filter to hook the $callback to.
|
|
* @param callable $callback The callback to be run when the filter is applied.
|
|
*/
|
|
public function add_filter( $tag, $callback ) {
|
|
// Dummy method to prevent breaking when Freemius SDK is removed.
|
|
}
|
|
|
|
}
|