testing
This commit is contained in:
parent
b539f2b030
commit
68a7345dac
|
@ -14,6 +14,7 @@ class KagiSummarizerExtension extends Minz_Extension {
|
||||||
|
|
||||||
public function handleConfigureAction() {
|
public function handleConfigureAction() {
|
||||||
$this->registerTranslates();
|
$this->registerTranslates();
|
||||||
|
$this->registerHook('entry_before_display', [$this, 'addSummarizeButton']);
|
||||||
|
|
||||||
if (Minz_Request::isPost()) {
|
if (Minz_Request::isPost()) {
|
||||||
$kagi_token = Minz_Request::param('kagi_token', '');
|
$kagi_token = Minz_Request::param('kagi_token', '');
|
||||||
|
@ -25,4 +26,9 @@ class KagiSummarizerExtension extends Minz_Extension {
|
||||||
FreshRSS_Context::$user_conf->save();
|
FreshRSS_Context::$user_conf->save();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function addSummarizeButton(FreshRSS_Entry $entry): FreshRSS_Entry {
|
||||||
|
$entry->_content('<h1>Hello World</h1>' . $entry->_content());
|
||||||
|
return $entry;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -4,7 +4,7 @@ return array(
|
||||||
'kagiSummarizer' => array(
|
'kagiSummarizer' => array(
|
||||||
'configure' => array(
|
'configure' => array(
|
||||||
'kagi_token' => 'Kagi Token',
|
'kagi_token' => 'Kagi Token',
|
||||||
'kagi_token_help' => 'Copy and paste the "Session Link" from you <a href="https://kagi.com/settings?p=user_details" target="_blank">Kagi Account</a> settings.'
|
'kagi_token_help' => 'Copy and paste the "Session Link" from your <a href="https://kagi.com/settings?p=user_details" target="_blank">Kagi Account</a> settings.'
|
||||||
)
|
)
|
||||||
)
|
)
|
||||||
);
|
);
|
||||||
|
|
Loading…
Reference in New Issue