X-Git-Url: https://git.mxchange.org/?p=friendica-addons.git;a=blobdiff_plain;f=randplace%2Frandplace.php;fp=randplace%2Frandplace.php;h=ca4d3d797d0783d24a5becefb3f1aabc448a3dcc;hp=abf59e2dffd1ab852041109a4734092ede016311;hb=39dd3dffe07efd69fa1ac6d0bd243c7fc0e3a66f;hpb=67c1273e08511bba6d5108e66305783deaca752f diff --git a/randplace/randplace.php b/randplace/randplace.php index abf59e2d..ca4d3d79 100644 --- a/randplace/randplace.php +++ b/randplace/randplace.php @@ -4,9 +4,9 @@ * Description: Sample Friendica addon. Set a random place when posting. * Version: 1.0 * Author: Mike Macgirvin - * - * - * + * + * + * * * Addons are registered with the system through the admin * panel. @@ -14,7 +14,7 @@ * When registration is detected, the system calls the addon * name_install() function, located in 'addon/name/name.php', * where 'name' is the name of the addon. - * If the addon is removed from the configuration list, the + * If the addon is removed from the configuration list, the * system will call the name_uninstall() function. * */ @@ -92,7 +92,7 @@ function randplace_post_hook($a, &$item) { /* Retrieve our personal config setting */ - $active = PConfig::get(local_user(), 'randplace', 'enable'); + $active = get_pconfig(local_user(), 'randplace', 'enable'); if(! $active) return; @@ -106,7 +106,7 @@ function randplace_post_hook($a, &$item) { * */ - $cities = []; + $cities = array(); $zones = timezone_identifiers_list(); foreach($zones as $zone) { if((strpos($zone,'/')) && (! stristr($zone,'US/')) && (! stristr($zone,'Etc/'))) @@ -137,7 +137,7 @@ function randplace_settings_post($a,$post) { if(! local_user()) return; if($_POST['randplace-submit']) - PConfig::set(local_user(),'randplace','enable',intval($_POST['randplace'])); + set_pconfig(local_user(),'randplace','enable',intval($_POST['randplace'])); } @@ -161,7 +161,7 @@ function randplace_settings(&$a,&$s) { /* Get the current state of our config variable */ - $enabled = PConfig::get(local_user(),'randplace','enable'); + $enabled = get_pconfig(local_user(),'randplace','enable'); $checked = (($enabled) ? ' checked="checked" ' : '');