haxorqt
Home
Console
Upload
information
Create File
Create Folder
About
:
/
proc
/
self
/
cwd
/
wp-content
/
plugins
/
admin-columns-pro
/
classes
/
Sorting
/
Model
/
Filename :
MetaMappingFactory.php
back
Copy
<?php namespace ACP\Sorting\Model; use AC\MetaType; /** * Sorts a list table by pre sorted fields that are associated with the supplied meta key. */ class MetaMappingFactory { public function create(string $meta_type, string $meta_key, array $fields) { switch ($meta_type) { case MetaType::POST : return new Post\MetaMapping($meta_key, $fields); case MetaType::USER : return new User\MetaMapping($meta_key, $fields); case MetaType::COMMENT : return new Comment\MetaMapping($meta_key, $fields); case MetaType::TERM : return new Taxonomy\MetaMapping($meta_key, $fields); default : return null; } } }