|
string | MY_DUMMY_SETTING = "MY_DUMMY_SETTING" |
|
Definition at line 55 of file pktoolsAlgorithmProvider.py.
◆ getDescription()
def qgis.pktoolsAlgorithmProvider.pktoolsAlgorithmProvider.getDescription |
( |
|
self | ) |
|
This is the provired full name.
Definition at line 100 of file pktoolsAlgorithmProvider.py.
100 def getDescription(self):
101 '''This is the provired full name. 103 return "Utilities for remote sensing image processing"
◆ getName()
def qgis.pktoolsAlgorithmProvider.pktoolsAlgorithmProvider.getName |
( |
|
self | ) |
|
This is the name that will appear on the toolbox group.
It is also used to create the command line name of all the algorithms
from this provider
Definition at line 93 of file pktoolsAlgorithmProvider.py.
94 '''This is the name that will appear on the toolbox group. 95 It is also used to create the command line name of all the algorithms
◆ initializeSettings()
def qgis.pktoolsAlgorithmProvider.pktoolsAlgorithmProvider.initializeSettings |
( |
|
self | ) |
|
In this method we add settings needed to configure our provider.
Do not forget to call the parent method, since it takes care or
automatically adding a setting for activating or deactivating the
algorithms in the provider
Definition at line 73 of file pktoolsAlgorithmProvider.py.
73 def initializeSettings(self):
74 '''In this method we add settings needed to configure our provider. 75 Do not forget to call the parent method, since it takes care or 76 automatically adding a setting for activating or deactivating the 77 algorithms in the provider 79 AlgorithmProvider.initializeSettings(self)
80 ProcessingConfig.addSetting(Setting(self.getDescription(), pktoolsUtils.PKTOOLS_FOLDER,
"pktools folder", pktoolsUtils.pktoolsPath()))
◆ unload()
def qgis.pktoolsAlgorithmProvider.pktoolsAlgorithmProvider.unload |
( |
|
self | ) |
|
Setting should be removed here, so they do not appear anymore
when the plugin is unloaded
Definition at line 87 of file pktoolsAlgorithmProvider.py.
88 '''Setting should be removed here, so they do not appear anymore 89 when the plugin is unloaded''' 90 AlgorithmProvider.unload(self)
91 ProcessingConfig.removeSetting(pktoolsAlgorithmProvider.MY_DUMMY_SETTING)
The documentation for this class was generated from the following file: