Sid Gifari File Manager
🏠 Root
/
home
/
genremedia08
/
thepassage.overlookedtracks.com
/
wp-content9
/
plugins
/
ithemes-sync
/
verbs
/
Editing: get-sync-settings.php
<?php /* Implementation of the get-sync-settings verb. Written by Chris Jean for iThemes.com Version 1.1.0 Version History 1.0.0 - 2013-11-20 - Chris Jean Initial version 1.1.0 - 2014-01-20 - Chris Jean Added $status_element_name and $show_in_status_by_default. */ class Ithemes_Sync_Verb_Get_Sync_Settings extends Ithemes_Sync_Verb { public static $name = 'get-sync-settings'; public static $description = 'Retrieve the Sync plugin\'s settings.'; public static $status_element_name = 'settings'; public static $show_in_status_by_default = true; private $default_arguments = []; public function run( $arguments ) { $arguments = Ithemes_Sync_Functions::merge_defaults( $arguments, $this->default_arguments ); return Ithemes_Sync_Functions::get_sync_settings( $arguments ); } }
Save
Cancel