forked from GNUsocial/gnu-social
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			631 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			631 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| declare(strict_types = 1);
 | |
| 
 | |
| namespace Component\Collection\Util\Controller;
 | |
| 
 | |
| use App\Core\Controller;
 | |
| use App\Entity\Actor;
 | |
| use App\Util\Common;
 | |
| use Component\Collection\Collection as CollectionModule;
 | |
| 
 | |
| class Collection extends Controller
 | |
| {
 | |
|     public function query(string $query, ?string $locale = null, ?Actor $actor = null, array $note_order_by = [], array $actor_order_by = []): array
 | |
|     {
 | |
|         $actor  ??= Common::actor();
 | |
|         $locale ??= Common::currentLanguage()->getLocale();
 | |
|         return CollectionModule::query($query, $this->int('page') ?? 1, $locale, $actor, $note_order_by, $actor_order_by);
 | |
|     }
 | |
| }
 |