16 lines
319 B
PHP
16 lines
319 B
PHP
<?php
|
|
|
|
/**
|
|
* Class WPML_Media_Attachments_Query_Factory
|
|
*/
|
|
class WPML_Media_Attachments_Query_Factory implements IWPML_Frontend_Action_Loader, IWPML_Backend_Action_Loader {
|
|
|
|
/**
|
|
* @return IWPML_Action|WPML_Media_Attachments_Query
|
|
*/
|
|
public function create() {
|
|
return new WPML_Media_Attachments_Query();
|
|
}
|
|
|
|
}
|