1) $channel = channelx_by_nick(argv(1)); } if(! $channel) { if($using_api) return; notice( t('Channel not found.') . EOL); killme(); } $observer = \App::get_observer(); $args = array( 'source' => 'editor', 'visible' => 0, 'contact_allow' => array($channel['channel_hash'])); $ret = photo_upload($channel,$observer,$args); if(! $ret['success']) { if($using_api) return; notice($ret['message']); killme(); } if($using_api) return("\n\n" . $ret['body'] . "\n\n"); else echo "\n\n" . $ret['body'] . "\n\n"; killme(); } }