Files
@ 467a3a1612f2
Branch filter:
Location: rattail-project/corepos-demo-poser/office_plugins/PoserDemo/PoserDemo.php - annotation
467a3a1612f2
920 B
text/x-php
Hopefully fix composer package compatibility ..?
struggling to get this all straight it seems..
struggling to get this all straight it seems..
768fe867f2f7 768fe867f2f7 7e0de111c894 7e0de111c894 7e0de111c894 768fe867f2f7 7e0de111c894 768fe867f2f7 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 768fe867f2f7 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 768fe867f2f7 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 7e0de111c894 768fe867f2f7 | <?php
class PoserDemo extends COREPOS\Fannie\API\FanniePlugin
{
public $plugin_description = 'Plugin to demo Poser customization';
public $plugin_settings = [
'PoserDemoTailboneAPIURL' => [
'label' => 'Tailbone API URL',
'description' => 'Base URL for Tailbone API (usually ends with /api)',
],
'PoserDemoTailboneAPIToken' => [
'label' => 'Tailbone API Token',
'description' => 'User auth token for use with Tailbone API',
],
'PoserDemoTailboneAPIVerifySSL' => [
'label' => 'Verify SSL',
'description' => 'Validate SSL cert used by Tailbone API?',
'options' => [
"Yes, validate the SSL cert" => 'true',
"No, do not validate the SSL cert (SHOULD ONLY BE USED FOR TESTING!)" => 'false',
],
'default'=>'true',
],
];
}
|