]> git.mxchange.org Git - friendica-addons.git/blobdiff - tictac/tictac.php
[tictac] Move the addon to unsupported
[friendica-addons.git] / tictac / tictac.php
index 4d3a46b4da4f3d9e4e87940c06a57c0e3e4d551d..7a00349e4cd21613196036fe0523e11879b8435a 100644 (file)
@@ -4,28 +4,31 @@
  * Description: The TicTacToe game application
  * Version: 1.0
  * Author: Mike Macgirvin <http://macgirvin.com/profile/mike>
+ * Status: unsupported
  */
+
+use Friendica\App;
 use Friendica\Core\Hook;
 use Friendica\DI;
 
-function tictac_install() {
+function tictac_install()
+{
        Hook::register('app_menu', 'addon/tictac/tictac.php', 'tictac_app_menu');
 }
 
-function tictac_app_menu($a,&$b) {
+function tictac_app_menu(App $a, array &$b)
+{
        $b['app_menu'][] = '<div class="app-title"><a href="tictac">' . DI::l10n()->t('Three Dimensional Tic-Tac-Toe') . '</a></div>';
 }
 
+/**
+ * This is a statement rather than an actual function definition. The simple
+ * existence of this method is checked to figure out if the addon offers a
+ * module.
+ */
+function tictac_module() {}
 
-function tictac_module() {
-       return;
-}
-
-
-
-
-
-function tictac_content(&$a) {
+function tictac_content(App $a) {
 
        $o = '';