ListScreenFactory.php
288 Bytes
<?php
namespace AC;
/**
* @deprecated 4.0
*/
class ListScreenFactory {
public static function create( $key, $id = null ) {
$list_screen = ListScreenTypes::instance()->get_list_screen_by_key( $key );
if ( $list_screen ) {
return clone $list_screen;
}
return null;
}
}