# wordpress-seo/18.8/src/deprecated/admin/links/class-link-table-accessible-notifier.php

Yoast SEO – Advanced SEO with real-time guidance and built-in AI, version 18.8. 50 lines.

- Page: https://pluginprobe.com/plugins/wordpress-seo/18.8/code/src/deprecated/admin/links/class-link-table-accessible-notifier.php
- Raw: https://pluginprobe.com/plugins/wordpress-seo/18.8/raw/src/deprecated/admin/links/class-link-table-accessible-notifier.php
- Modified: 2021-05-18T13:42:44+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/wordpress-seo/18.8/code/src/deprecated/admin/links/class-link-table-accessible-notifier.php#L10-L20`.

```php
<?php
/**
 * WPSEO plugin file.
 *
 * @package WPSEO\Admin\Links
 */

/**
 * Represents the notice when the table is not accessible.
 */
class WPSEO_Link_Table_Accessible_Notifier {

	/**
	 * Adds the notification to the notification center.
	 *
	 * @deprecated 14.1
	 *
	 * @codeCoverageIgnore
	 */
	public function add_notification() {
		_deprecated_function( __METHOD__, 'WPSEO 14.1' );
	}

	/**
	 * Removes the notification from the notification center.
	 *
	 * @deprecated 14.1
	 *
	 * @codeCoverageIgnore
	 */
	public function remove_notification() {
		_deprecated_function( __METHOD__, 'WPSEO 14.1' );
	}

	/**
	 * Returns the notification when the table is not accessible.
	 *
	 * @deprecated 14.1
	 *
	 * @codeCoverageIgnore
	 *
	 * @return Yoast_Notification|null The notification.
	 */
	protected function get_notification() {
		_deprecated_function( __METHOD__, 'WPSEO 14.1' );

		return null;
	}
}

```
