/home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/classes/settings
Edit: /home/vianto5/cititower.mx/wp-content/plugins/sitepress-multilingual-cms/classes/settings/UI.php (1395B)
then( Fns::always( $_GET ) )
->then( Logic::anyPass( [ [ UIPage::class, 'isMainSettingsTab' ], [ UIPage::class, 'isTroubleshooting' ] ] ) )
->then( Either::fromBool() )
->then( [ self::class, 'getData' ] )
->then( Resources::enqueueApp( 'settings' ) );
}
public static function getData() {
return [
'name' => 'wpmlSettingsUI',
'data' => [
'endpoints' => [
'getCount' => GetNumberOfPosts::class,
'setAutomatic' => SetForPostType::class,
'ateDashboardScript' => ATEDashboardScript::class,
],
'shouldTranslateEverything' => Option::shouldTranslateEverything(),
'settingsUrl' => admin_url( UIPage::getSettings() ),
'existingPostTypes' => PostTypes::getOnlyTranslatable(),
'isTMLoaded' => ! wpml_is_setup_complete() || Option::isTMAllowed(),
]
];
}
}