diff options
author | redmatrix <redmatrix@redmatrix.me> | 2015-05-19 17:17:04 -0700 |
---|---|---|
committer | redmatrix <redmatrix@redmatrix.me> | 2015-05-19 17:17:04 -0700 |
commit | e54198e5b8c0534a9021f4a494cf6fa504fc72ac (patch) | |
tree | a8fca2cd5cf79fec2979a9386cd29ca511af679f /doc/Widgets.md | |
parent | d84c2835cd3a75a471ccd7c307e36421d8670064 (diff) | |
parent | 9485e917c61c244fac1ab5bb6fe760645e12dcfb (diff) | |
download | volse-hubzilla-e54198e5b8c0534a9021f4a494cf6fa504fc72ac.tar.gz volse-hubzilla-e54198e5b8c0534a9021f4a494cf6fa504fc72ac.tar.bz2 volse-hubzilla-e54198e5b8c0534a9021f4a494cf6fa504fc72ac.zip |
Merge https://github.com/redmatrix/redmatrix into pending_merge
Diffstat (limited to 'doc/Widgets.md')
-rw-r--r-- | doc/Widgets.md | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/doc/Widgets.md b/doc/Widgets.md index d45f719d9..d9df66eee 100644 --- a/doc/Widgets.md +++ b/doc/Widgets.md @@ -99,4 +99,20 @@ Some/many of these widgets have restrictions which may restrict the type of page * channel_id - if not your own <br /> <br /> + +Creating New Widgets +==================== + +If you want a widget named 'slugfish', create widget/slugfish.php containing + + + <?php + + function widget_slugfish($args) { + + .. widget code goes here + + } + + #include doc/macros/main_footer.bb; |