Returns config value for current plugin :param option: :return:
(self, option)
| 106 | return self.core.config.getPlugin(self.__name__, option) |
| 107 | |
| 108 | def getConfig(self, option): |
| 109 | """ Returns config value for current plugin |
| 110 | |
| 111 | :param option: |
| 112 | :return: |
| 113 | """ |
| 114 | return self.getConf(option) |
| 115 | |
| 116 | def setStorage(self, key, value): |
| 117 | """ Saves a value persistently to the database """ |
no test coverage detected