class-wpml-rest-extend-args-factory.php 276 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 <?php /** * @author OnTheGo Systems */ class WPML_REST_Extend_Args_Factory implements IWPML_REST_Action_Loader { /** * @return IWPML_Action|IWPML_Action[]|null */ public function create() { global $sitepress; return new WPML_REST_Extend_Args( $sitepress ); } }