Lines:
1 to 21 of 21
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Metabox */ /** * Describes an interface for an analysis that can either be enabled or disabled. */ interface WPSEO_Metabox_Analysis { /* function is_enabled() – Whether this analysis is enabled. */ /* function is_user_enabled() – Whether or not this analysis is enabled by the user. */ /* function is_globally_enabled() – Whether or not this analysis is enabled globally. */ }