1 | <?php |
||
20 | class ApplicationKeyConnection extends AbstractSaveableConnection implements SavableConnectionInterface |
||
21 | { |
||
22 | /** |
||
23 | * @var string |
||
24 | */ |
||
25 | public $key; |
||
26 | |||
27 | /** |
||
28 | * @var string |
||
29 | */ |
||
30 | public $hubId; |
||
31 | |||
32 | /** |
||
33 | * Returns the display name of this class. |
||
34 | * |
||
35 | * @return string The display name of this class. |
||
36 | */ |
||
37 | public static function displayName(): string |
||
41 | |||
42 | /** |
||
43 | * @inheritdoc |
||
44 | * @throws \Twig_Error_Loader |
||
45 | * @throws \yii\base\Exception |
||
46 | */ |
||
47 | public function getSettingsHtml() |
||
56 | |||
57 | /** |
||
58 | * @inheritdoc |
||
59 | */ |
||
60 | public function rules() |
||
85 | |||
86 | /** |
||
87 | * @return string |
||
88 | */ |
||
89 | public function getHubId(): string |
||
93 | |||
94 | /** |
||
95 | * Add the 'hapikey' to the query |
||
96 | * |
||
97 | * @inheritdoc |
||
98 | */ |
||
99 | public function prepareAuthorizationRequest( |
||
123 | |||
124 | /** |
||
125 | * We can't do much, just return the response |
||
126 | * |
||
127 | * @inheritdoc |
||
128 | */ |
||
129 | public function handleAuthorizationResponse( |
||
136 | } |
||
137 |