File "Import_Factory.php"
Full Path: /home/siazco/grocery.siazco.se/wp-content/plugins/better-wp-security/core/lib/actor/Import_Factory.php
File size: 434 bytes
MIME-type: text/x-php
Charset: utf-8
<?php
namespace iThemesSecurity\Actor;
final class Import_Factory implements Actor_Factory {
public function make( $identifier ) {
return new Import();
}
public function get_slug() {
return 'import';
}
public function get_label() {
return __( 'Import', 'better-wp-security' );
}
public function is_determinate() {
return true;
}
public function get_actors( $query = '' ) {
return [
new Import(),
];
}
}