Declare the values in the settings (in the settings field), i.e.:
plugin.tx_some-extname.settings { myXsetting = XXXX }
So, all settings will be available in your plugin in $this->settings (like array ):
$valX = $this->settings['myXsetting'];
source share