PATH:
home
/
letacommog
/
lenazen
/
wp-content
/
plugins
/
wordpress-seo-premium
/
admin
/
import
/
plugins
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Import\Plugins */ /** * Class WPSEO_Plugin_Importers. * * Object which contains all importers. */ class WPSEO_Plugin_Importers { /** * List of supported importers. * * @var array */ private static $importers = array( 'WPSEO_Import_AIOSEO', 'WPSEO_Import_Greg_SEO', 'WPSEO_Import_HeadSpace', 'WPSEO_Import_Jetpack_SEO', 'WPSEO_Import_WP_Meta_SEO', 'WPSEO_Import_Platinum_SEO', 'WPSEO_Import_Premium_SEO_Pack', 'WPSEO_Import_SEOPressor', 'WPSEO_Import_SEO_Framework', 'WPSEO_Import_Smartcrawl_SEO', 'WPSEO_Import_Squirrly', 'WPSEO_Import_Ultimate_SEO', 'WPSEO_Import_WooThemes_SEO', 'WPSEO_Import_WPSEO', ); /** * Returns an array of importers available. * * @return array Available importers. */ public static function get() { return self::$importers; } }
[+]
..
[-] class-import-seopressor.php
[edit]
[-] class-abstract-plugin-importer.php
[edit]
[-] class-import-aioseo.php
[edit]
[-] class-import-jetpack.php
[edit]
[-] class-import-ultimate-seo.php
[edit]
[-] class-import-greg-high-performance-seo.php
[edit]
[-] class-import-platinum-seo-pack.php
[edit]
[-] class-import-wp-meta-seo.php
[edit]
[-] class-import-woothemes-seo.php
[edit]
[-] class-import-headspace.php
[edit]
[-] class-import-premium-seo-pack.php
[edit]
[-] class-import-squirrly.php
[edit]
[-] class-import-wpseo.php
[edit]
[-] class-import-seo-framework.php
[edit]
[-] class-import-smartcrawl.php
[edit]
[-] class-importers.php
[edit]