PATH:
home
/
letacommog
/
latelier-beaute
/
wp-content
/
plugins
/
wordpress-seo
/
admin
/
links
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Links */ /** * Represents installer for the link module. */ class WPSEO_Link_Installer { /** @var WPSEO_Installable[] */ protected $installables = array(); /** * Sets the installables. */ public function __construct() { $this->installables = array( new WPSEO_Link_Storage(), new WPSEO_Meta_Storage(), ); } /** * Runs the installation of the link module. */ public function install() { foreach ( $this->get_installables() as $installable ) { $installable->install(); } } /** * Adds a installable object to the installer. * * @param WPSEO_Installable $installable The installable object. */ public function add_installable( WPSEO_Installable $installable ) { $this->installables[] = $installable; } /** * Returns the installable objects. * * @return WPSEO_Installable[] The installables to use. */ protected function get_installables() { return $this->installables; } }
[+]
..
[-] class-link-storage.php
[edit]
[-] class-link-installer.php
[edit]
[-] class-link-cleanup-transient.php
[edit]
[-] class-link-reindex-post-service.php
[edit]
[-] class-link-content-processor.php
[edit]
[-] class-link-filter.php
[edit]
[-] class-link-query.php
[edit]
[-] class-link-extractor.php
[edit]
[-] class-link-reindex-dashboard.php
[edit]
[-] class-link-factory.php
[edit]
[-] class-link-watcher-loader.php
[edit]
[-] class-link-column-count.php
[edit]
[-] class-link-reindex-post-endpoint.php
[edit]
[-] class-link-compatibility-notifier.php
[edit]
[-] class-link-columns.php
[edit]
[-] class-link.php
[edit]
[-] class-link-type-classifier.php
[edit]
[-] class-link-table-accessible.php
[edit]
[-] class-link-utils.php
[edit]
[-] class-link-internal-lookup.php
[edit]
[-] class-link-notifier.php
[edit]
[-] class-link-table-accessible-notifier.php
[edit]
[-] class-link-watcher.php
[edit]