This commit is contained in:
Frédéric FRANCE 2020-10-21 21:08:33 +02:00
parent 06325f9422
commit 4873794dc0
No known key found for this signature in database
GPG Key ID: 06809324E4B2ABC1

View File

@ -35,16 +35,39 @@ use OAuth\OAuth2\Service\Google;
*/ */
class printing_printgcp extends PrintingDriver class printing_printgcp extends PrintingDriver
{ {
/**
* @var string module name
*/
public $name = 'printgcp'; public $name = 'printgcp';
/**
* @var string module description
*/
public $desc = 'PrintGCPDesc'; public $desc = 'PrintGCPDesc';
/** /**
* @var string String with name of icon for myobject. Must be the part after the 'object_' into object_myobject.png * @var string String with name of icon for myobject. Must be the part after the 'object_' into object_myobject.png
*/ */
public $picto = 'printer'; public $picto = 'printer';
/**
* @var string module description
*/
public $active = 'PRINTING_PRINTGCP'; public $active = 'PRINTING_PRINTGCP';
/**
* @var array module parameters
*/
public $conf = array(); public $conf = array();
/**
* @var string google id
*/
public $google_id = ''; public $google_id = '';
/**
* @var string google secret
*/
public $google_secret = ''; public $google_secret = '';
/** /**