| Server IP : 82.208.35.60 / Your IP : 216.73.217.33 Web Server : Apache/2.4.55 (FreeBSD) OpenSSL/1.1.1q-freebsd PHP/7.3.31 System : FreeBSD server7.d2m.cz 12.4-RELEASE-p9 FreeBSD 12.4-RELEASE-p9 GENERIC amd64 User : studiokobylisy_cz ( 1008) PHP Version : 7.3.31 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /home/d2m/sofident_cz/wp-content/plugins/wpml-string-translation/classes/API/rest/mo/ |
Upload File : |
<?php
namespace WPML\ST\Rest\MO;
use WPML\ST\TranslationFile\QueueFilter;
use WPML_ST_Translations_File_Queue;
class Import extends \WPML\ST\Rest\Base {
/**
* @return array
*/
function get_routes() {
return [
[
'route' => 'import_mo_strings',
'args' => [
'methods' => 'POST',
'callback' => [ $this, 'import' ],
'args' => [
'plugins' => [
'type' => 'array',
],
'themes' => [
'type' => 'array',
],
'other' => [
'type' => 'array',
],
]
]
]
];
}
/**
* @param \WP_REST_Request $request
*
* @return array
*/
function get_allowed_capabilities( \WP_REST_Request $request ) {
return [ 'manage_options' ];
}
/**
* @return array
* @throws \Auryn\InjectionException
*/
public function import( \WP_REST_Request $request ) {
/** @var WPML_ST_Translations_File_Queue $queue */
$queue = \WPML\Container\make( \WPML_ST_Translations_File_Scan_Factory::class )->create_queue();
$queue->import( new QueueFilter(
$request->get_param( 'plugins' ),
$request->get_param( 'themes' ),
$request->get_param( 'other' )
) );
return [ 'remaining' => $queue->get_pending() ];
}
}