WP File Manager
Current Path:
/
home
/
argothem
/
www
/
organecyberpresse
/
plugins
/
auto
/
twitter
/
v2.1.0
/
inc
/
Name
Action
..
twitter.php
Edit
twitter_notifications.php
Edit
twitter_to_array.php
Edit
Editing: twitter_to_array.php
<?php /* * Plugin Twitter v2 * (c) 2009-2021 * * envoyer et lire des messages de Twitter * distribue sous licence GNU/LGPL * */ if (!defined("_ECRIRE_INC_VERSION")) { return; } function inc_twitter_to_array_dist($url, $options = array()) { $url = parse_url($url); $command = $url['path']; $params = array(); parse_str($url['query'], $params); if (!function_exists('twitter_api_call')) { include_spip("inc/twitter"); } $res = twitter_api_call($command, 'get', $params, $options); return $res; }