summaryrefslogtreecommitdiff
path: root/classes/pluginhost.php
AgeCommit message (Collapse)Author
2018-11-30debug logging system rework:Andrew Dolgov
* support various logging levels per-message * remove hacks like debug_suppress, DAEMON_EXTENDED_DEBUG, etc * _debug() is kept as a compatibility shim for plugins
2018-11-22remove PHPMailer and related directives from config.php-dist; add pluggable ↵Andrew Dolgov
Mailer class
2018-11-03php: remove trailing whitespacesAndrew Dolgov
2018-08-07pluginhost: implement basic autoloader for classes bundled with plugins ↵Andrew Dolgov
(uses vendor/ layout)
2017-12-17pluginhost: always return an array in get_all()Andrew Dolgov
2017-12-11Merge branch 'master' of git.tt-rss.org:git/tt-rss into pdo-experimentalAndrew Dolgov
2017-12-03fix some minor issues found by code analyzerAndrew Dolgov
2017-12-03pluginhost: do not connect via legacy DB api until requestedAndrew Dolgov
log all initiated legacy database connections
2017-12-02pluginhost: save_data() fixesAndrew Dolgov
2017-12-02pluginhost: use PDOAndrew Dolgov
2017-11-27add HOOK_UNSUBSCRIBE_FEEDdim0x69
2017-10-08remove apache-specific x-sendfile stuffAndrew Dolgov
implement a hook (HOOK_SEND_LOCAL_FILE) which plugins may use to send files via httpd-specific implementation to increase performance typically on larger files
2017-09-24Add 'HOOK_FEED_BASIC_INFO' to enable plugins to provide basic feed info.wn_
It's expected the plugin will return content parsable by FeedParser, which will act as an interface to the basic feed info. In the case of a plugin that also uses 'HOOK_FETCH_FEED', both might return the same content. The hook signature was made somewhat similar to 'HOOK_FETCH_FEED'.
2017-05-26add HOOK_FORMAT_ARTICLE & HOOK_FORMAT_ARTICLE_CDMAndrew Dolgov
Feeds::format_headlines_list: add some comments for cdm article closing tags
2017-04-26remove some redundant php closing tagsAndrew Dolgov
2017-04-26fix various issues reported by static analysisAndrew Dolgov
update gitlab-ci config
2017-02-12add HOOK_ENCLOSURE_ENTRY for af_zz_imgproxyAndrew Dolgov
2017-01-07add toggle_sidebar plugin, remove obsolete toggle buttonAndrew Dolgov
add PluginHost::HOOK_MAIN_TOOLBAR_BUTTON
2016-03-01add PluginHost.HOOK_ARTICLE_EXPORT_FEEDAndrew Dolgov
2015-10-08don't init plugins when loading everything to make a list, duhAndrew Dolgov
2015-08-11add plugin-based filter actions (see example plugin in attic)Andrew Dolgov
bump schema
2015-06-15pluginhost: mention that update task & housekeeping hooks are for global ↵Andrew Dolgov
plugins only
2015-06-05pluginhost: assume plugins.local existsAndrew Dolgov
2015-06-05pluginhost: allow loading user plugins from plugins.localAndrew Dolgov
2015-04-21add HOOK_RENDER_ENCLOSURE & af_youtube_embed pluginAndrew Dolgov
2014-08-19add pluginhost HOOK_HEADLINES_BEFORE (refs #814)Andrew Dolgov
2014-05-19Add subscribe hook, give more information to fetch_feed hookwltb
2014-05-12Added HOOK_FORMAT_ENCLOSURES plugin hook.Dave Zaikos
Runs HTML and enclosures array through a plugin hook when rendering an article's enclosures in format_article_enclosures(). Allows plugins to override handling of how enclosures are presented by either filtering the array of enclosures, or generating the HTML to add to the article content.
2014-04-23Make search mechanism pluggableRob Hoelz
Currently, TinyTinyRSS can use raw SQL or the Sphinx search engine for searching. It would be nice if other search engines (such as Xapian) could be used, or if features of the underlying SQL engine (such as MySQL's FULLTEXT indexes) could be leveraged. This commit makes searching into a plugin hook, falling back to the builtin behavior if no search plugin is active. The Sphinx search behavior has been broken out into a plugin.
2014-03-14make_init_params: add pluginsAndrew Dolgov
2014-01-25Fixed a bug in PluginHost::del_hook() where the parameters passed to ↵Dave Zaikos
array_search() were in the incorrect order.
2013-08-02add hook_house_keepingAndrew Dolgov
2013-06-27Changes to add a new hook: HOOK_QUERY_HEADLINES. An example is provided.justauser
2013-05-27pluginhost: allow html tags in plugin storageAndrew Dolgov
2013-05-20add HOOK_FETCH_FEEDAndrew Dolgov
2013-05-07Fixing bugs found by static analysisRasmus Lerdorf
2013-04-28pluginhost: remove session cache for storageAndrew Dolgov
2013-04-26add HOOK_PREFS_SAVE_FEEDAndrew Dolgov
2013-04-26add HOOK_PREFS_EDIT_FEEDAndrew Dolgov
2013-04-19plugins: bump API versionAndrew Dolgov
2013-04-19implement plugin API version compatibility checkAndrew Dolgov
2013-04-19better handle get_link() enabled plugins crashing on loadAndrew Dolgov
2013-04-19pref_prefs: remove second argument from the constructorAndrew Dolgov
2013-04-18make pluginhost a singletonAndrew Dolgov
2013-04-17classes: use OO DB interfaceAndrew Dolgov
2013-04-17fix blank character after opening bracket in function callsAndrew Dolgov
2013-04-17remove $linkAndrew Dolgov
2013-04-16do not try to load plugins which aren't directoriesAndrew Dolgov
2013-04-12add support for plugins adding API methodsAndrew Dolgov
2013-04-09add HOOK_ARTICLE_LEFT_BUTTONAndrew Dolgov