10 lines
227 B
PHP
10 lines
227 B
PHP
<?php
|
|
|
|
class WPML_Cache_Terms_Per_Lang_Factory implements IWPML_Backend_Action_Loader, IWPML_Frontend_Action_Loader {
|
|
|
|
public function create() {
|
|
global $sitepress;
|
|
return new WPML_Cache_Terms_Per_Lang( $sitepress );
|
|
}
|
|
}
|