Uname: Linux p3plzcpnl499967.prod.phx3.secureserver.net 4.18.0-553.54.1.lve.el8.x86_64 #1 SMP Wed Jun 4 13:01:13 UTC 2025 x86_64
Software: Apache
PHP version: 8.2.30 [ PHP INFO ] PHP os: Linux
Server Ip: 208.109.40.231
Your Ip: 216.73.216.26
User: nayff91c5tsx (10005085) | Group: nayff91c5tsx (10005085)
Safe Mode: OFF
Disable Function:
NONE

name : README.md
## Configuration example:

#### Plugins:

```PHP

add_action( 'init', 'my_plugins_wizard_config', 0 );

function my_plugins_wizard_config() {

	if ( ! function_exists( 'crocoblock_wizard' ) ) {
		return;
	}

	crocoblock_wizard()->settings->register_external_config( array(
		'plugins' => array(
			'plugin-1' => array(
				'name'   => esc_html__( 'Plugin 1', 'crocoblock-wizard' ),
				'sourse' => 'wordpress', // 'git', 'local', 'remote', 'wordpress' (default).
				'path'   => false, // git repository, remote URL or local path.
			),
			'plugin-2' => array(
				'name'   => esc_html__( 'Plugin 2', 'crocoblock-wizard' ),
				'sourse' => 'git', // 'git', 'local', 'remote', 'wordpress' (default).
				'path'   => false, // git repository, remote URL or local path.
			),
		)
	) );

	// Or from remote url
	crocoblock_wizard()->settings->register_external_config( array(
		'plugins' => array(
			'get_from' => URL which is returns JSON with plugins configuration,
		)
	) );

}
```

#### Skins:

```PHP

add_action( 'init', 'my_plugins_wizard_config', 0 );

function my_plugins_wizard_config() {

	if ( ! function_exists( 'crocoblock_wizard' ) ) {
		return;
	}

	crocoblock_wizard()->settings->register_external_config( array(
		'skins' => array(
			'skin-name' => array(
				'full'  => array(
					'plugin-1',
					'plugin-2',
				),
				'lite'  => array(
					'plugin-1',
				),
				'demo'  => false,
				'thumb' => false,
				'name'  => esc_html__( 'Skin Name', 'crocoblock-wizard' ),
				'type'  => 'skin', // skin or model
			),
		),
	) );

	// Or from remote url
	crocoblock_wizard()->settings->register_external_config( array(
		'skins' => array(
			'get_from' => URL which is returns JSON with skins configuration,
		)
	) );

}
```
© 2026 GrazzMean