HummingBirdAnimeClient/src/Model/API.php

49 lines
1.0 KiB
PHP
Raw Normal View History

2016-10-20 22:09:36 -04:00
<?php declare(strict_types=1);
/**
2017-02-15 16:13:32 -05:00
* Hummingbird Anime List Client
2015-11-16 11:40:01 -05:00
*
2016-12-20 12:58:37 -05:00
* An API client for Kitsu and MyAnimeList to manage anime and manga watch lists
2015-11-16 11:40:01 -05:00
*
2016-10-20 22:09:36 -04:00
* PHP version 7
2016-08-30 10:01:18 -04:00
*
2017-02-15 16:13:32 -05:00
* @package HummingbirdAnimeClient
2016-08-30 10:01:18 -04:00
* @author Timothy J. Warren <tim@timshomepage.net>
2018-01-15 14:43:15 -05:00
* @copyright 2015 - 2018 Timothy J. Warren
2016-08-30 10:01:18 -04:00
* @license http://www.opensource.org/licenses/mit-license.html MIT License
2016-12-20 12:58:37 -05:00
* @version 4.0
* @link https://git.timshomepage.net/timw4mail/HummingBirdAnimeClient
*/
namespace Aviat\AnimeClient\Model;
/**
* Base model for api interaction
*/
2017-02-17 08:39:27 -05:00
class API extends AbstractModel {
2017-03-28 14:36:23 -04:00
/**
* Whether to use the MAL api
*
* @var boolean
*/
protected $useMALAPI;
/**
* Sort the list entries by their title
*
* @param array $array
2017-02-17 10:55:17 -05:00
* @param string $sortKey
* @return void
*/
2017-02-17 08:39:27 -05:00
protected function sortByName(array &$array, string $sortKey)
{
2016-08-30 10:57:41 -04:00
$sort = [];
foreach ($array as $key => $item)
{
2017-02-17 08:39:27 -05:00
$sort[$key] = $item[$sortKey]['titles'][0];
}
array_multisort($sort, SORT_ASC, $array);
}
}