mirror of
https://git.tt-rss.org/git/tt-rss.git
synced 2026-01-07 12:59:15 +00:00
revert all plugin base class related changes to keep compatibility with extant plugins (for the time being)
This commit is contained in:
@@ -1,33 +0,0 @@
|
||||
#!/bin/sh
|
||||
|
||||
TMPFILE=$(mktemp)
|
||||
|
||||
grep 'hook_.*(' ../classes/pluginhost.php | sed -e 's#[\t ]*/[* ]*##' \
|
||||
-e 's# [*]/$##' \
|
||||
-e 's# *(byref) *##' \
|
||||
-e 's#GLOBAL: ##' | while read F; do
|
||||
|
||||
cat << EOF >> $TMPFILE
|
||||
function $F {
|
||||
user_error("Dummy method invoked.", E_USER_ERROR);
|
||||
}
|
||||
|
||||
EOF
|
||||
done
|
||||
|
||||
cat ../classes/plugin-template.php | while IFS=\n read L; do
|
||||
case $L in
|
||||
*PluginTemplate* )
|
||||
echo "$L" | sed 's/PluginTemplate/Plugin/'
|
||||
;;
|
||||
*AUTO_GENERATED_HOOKS_GO_HERE* )
|
||||
echo "\t/* plugin hook methods (auto-generated) */\n"
|
||||
cat $TMPFILE
|
||||
;;
|
||||
* )
|
||||
echo "$L"
|
||||
;;
|
||||
esac
|
||||
done > ../classes/plugin.php
|
||||
|
||||
rm -f -- $TMPFILE
|
||||
Reference in New Issue
Block a user