ListTable
2 days ago
AdminUrl.php
2 days ago
CouponCode.php
2 days ago
Documentation.php
2 days ago
Editor.php
2 days ago
EditorColumns.php
2 days ago
EditorNetwork.php
2 days ago
EditorNetworkColumns.php
2 days ago
External.php
2 days ago
ListTableNetwork.php
2 days ago
PluginSearch.php
2 days ago
Preview.php
2 days ago
Site.php
2 days ago
UtmTags.php
2 days ago
PluginSearch.php
21 lines
| 1 | <?php |
| 2 | |
| 3 | declare(strict_types=1); |
| 4 | |
| 5 | namespace AC\Type\Url; |
| 6 | |
| 7 | use AC\Type\Uri; |
| 8 | |
| 9 | class PluginSearch extends Uri |
| 10 | { |
| 11 | public function __construct(string $search) |
| 12 | { |
| 13 | parent::__construct((string)admin_url('plugin-install.php')); |
| 14 | |
| 15 | $this->add('tab', 'search'); |
| 16 | $this->add('type', 'term'); |
| 17 | $this->add('s', $search); |
| 18 | } |
| 19 | |
| 20 | } |
| 21 |