PluginProbe
StockPack – Stock photos and AI images from Unsplash, Adobe Stock, Freepik and more / 3.7.0
StockPack – Stock photos and AI images from Unsplash, Adobe Stock, Freepik and more v3.7.0
3.7.0 3.6.0 3.6.1 3.5.2 trunk 2.0 2.1 2.2 2.3 2.4 2.4.1 2.4.2 2.4.3 2.5.0 2.5.1 2.5.2 2.5.3 2.5.4 2.5.5 2.5.6 2.5.7 2.6.0 2.6.1 3.0.0 3.0.1 All 71 releases
stockpack / src / class-stockpackcli.php

class-stockpackcli.php in StockPack – Stock photos and AI images from Unsplash, Adobe Stock, Freepik and more 3.7.0, at src/class-stockpackcli.php

25 lines 467 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 /**
4 * Class StockpackCli
5 *
6 * Handle Cli commands for stockpack
7 */
8 class StockpackCLI {
9 public function __construct() {
10
11 // example constructor called when plugin loads
12
13 }
14
15 public function update_token( $args, $assoc_args ) {
16 global $stockpack;
17
18 list( $token ) = $args;
19 $stockpack->admin->set_api_key($token);
20
21 WP_CLI::success( $token.__(' set as token for the StockPack plugin!','stockpack') );
22
23 }
24 }
25