diff options
author | redmatrix <git@macgirvin.com> | 2016-04-19 19:02:48 -0700 |
---|---|---|
committer | redmatrix <git@macgirvin.com> | 2016-04-19 19:02:48 -0700 |
commit | 974390d5d295b852343e92ce30b7deb793220906 (patch) | |
tree | ba781f08a73f2e2fc86b7243d6c8bb4f3d86be4b /Zotlabs/Module/Test.php | |
parent | 324771f8581222030947d9054a37dca99276e331 (diff) | |
download | volse-hubzilla-974390d5d295b852343e92ce30b7deb793220906.tar.gz volse-hubzilla-974390d5d295b852343e92ce30b7deb793220906.tar.bz2 volse-hubzilla-974390d5d295b852343e92ce30b7deb793220906.zip |
remove test files which were committed by accident
Diffstat (limited to 'Zotlabs/Module/Test.php')
-rw-r--r-- | Zotlabs/Module/Test.php | 38 |
1 files changed, 0 insertions, 38 deletions
diff --git a/Zotlabs/Module/Test.php b/Zotlabs/Module/Test.php deleted file mode 100644 index ff14e4691..000000000 --- a/Zotlabs/Module/Test.php +++ /dev/null @@ -1,38 +0,0 @@ -<?php -namespace Zotlabs\Module; - - -class Test extends \Zotlabs\Web\Controller { - - function get() { - - $s = '<XML> - <post><profile> - <diaspora_handle>macgirvin@diasp.org</diaspora_handle> - <first_name>Mike</first_name> - <last_name>Macgirvin</last_name> - <image_url>https://diasp.org/uploads/images/thumb_large_d5f9b6384c91f532f280.jpg</image_url> - <image_url_small>https://diasp.org/uploads/images/thumb_small_d5f9b6384c91f532f280.jpg</image_url_small> - <image_url_medium>https://diasp.org/uploads/images/thumb_medium_d5f9b6384c91f532f280.jpg</image_url_medi\ - um> - <birthday>1000-05-14</birthday> - <gender/> - <bio>Creator of Friendica, Redmatrix, and Hubzilla. </bio> - <location>Australia</location> - <searchable>true</searchable> - <nsfw>false</nsfw> - <tag_string>#redmatrix #hubzilla </tag_string> - </profile></post> - </XML>'; - - $parsed_xml = xml2array($s,false,0,'tag'); - - $o = print_r($parsed_xml,true); - return $o; - - - // fix_system_urls('http://hz.macgirvin.com',z_root()); - - } - -} |