forked from rica-carv/news_fetch
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplugin.xml
More file actions
41 lines (32 loc) · 1.24 KB
/
plugin.xml
File metadata and controls
41 lines (32 loc) · 1.24 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
<?xml version="1.0" encoding="utf-8" ?>
<e107Plugin name="News Fetch" version="2.5" date="2025-08-16" category="content" pluginUrl="https://exemplo.com" pluginEmail="contato@exemplo.com" description="Importa automaticamente notícias de fontes externas (RSS ou scraping).">
<author>rica_carv & ChatGPT</author>
<folder>news_fetch</folder>
<compatibility>2.3</compatibility>
<icon>news_fetch/images/icon.png</icon>
<prefs>
<pref name="use_module_fallback" type="boolean" default="0" />
<pref name="cron_interval" type="number" default="3600" />
</prefs>
<admin>
<menuTitle>News Fetch</menuTitle>
<page>admin_config.php</page>
</admin>
<site>e_module.php</site>
<languages>
<language name="English" file="languages/English.php" />
<language name="Portuguese" file="languages/Portuguese.php" />
</languages>
<install_required>false</install_required>
<installer>
<step>plugin_installer.php</step>
</installer>
<cronList>
<cron>
<function>news_fetch</function>
<file>e_cron.php</file>
<category>content</category>
<description>Importa conteúdos de fontes RSS ou scraping configuradas no plugin.</description>
</cron>
</cronList>
</e107Plugin>