PATH:
home
/
letacommog
/
laindinois
/
OLD
/
wp-content
/
plugins
/
wordpress-seo-premium
/
admin
/
links
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Links */ /** * Represents the cleanup logic when the text link counter features has been disabled. */ class WPSEO_Link_Cleanup_Transient implements WPSEO_WordPress_Integration { /** * Registers the hooks. */ public function register_hooks() { add_action( 'update_option_wpseo', array( $this, 'remove_transients_on_updated_option' ), 10, 2 ); } /** * Removes the transient when the option is updated. * * @param mixed $old_value The old value. * @param mixed $value The new value. * * @return void */ public function remove_transients_on_updated_option( $old_value, $value ) { $option_name = 'enable_text_link_counter'; if ( $value[ $option_name ] === false && $old_value[ $option_name ] !== $value[ $option_name ] ) { WPSEO_Link_Table_Accessible::cleanup(); WPSEO_Meta_Table_Accessible::cleanup(); } } }
[+]
..
[-] class-link.php
[edit]
[-] class-link-columns.php
[edit]
[-] class-link-reindex-dashboard.php
[edit]
[-] class-link-watcher-loader.php
[edit]
[-] class-link-column-count.php
[edit]
[-] class-link-cleanup-transient.php
[edit]
[-] class-link-watcher.php
[edit]
[-] class-link-content-processor.php
[edit]
[-] class-link-reindex-post-endpoint.php
[edit]
[-] class-link-utils.php
[edit]
[-] class-link-table-accessible-notifier.php
[edit]
[-] class-link-type-classifier.php
[edit]
[-] class-link-installer.php
[edit]
[-] class-link-reindex-post-service.php
[edit]
[-] class-link-internal-lookup.php
[edit]
[-] class-link-storage.php
[edit]
[-] class-link-notifier.php
[edit]
[-] class-link-filter.php
[edit]
[-] class-link-factory.php
[edit]
[-] class-link-extractor.php
[edit]
[-] class-link-compatibility-notifier.php
[edit]
[-] class-link-query.php
[edit]
[-] class-link-table-accessible.php
[edit]