Skip to content

This repository is snippet template. Use it when you create a new snippet repository.

Notifications You must be signed in to change notification settings

DivanDesign/EvolutionCMS.snippets.ddStartSnippet

Repository files navigation

(MODX)EvolutionCMS.snippets.ddStartSnippet

This repository is snippet template. Use it when you create a new snippet repository. Here should be placed a description of the plugin. All texts below are examples, replace them with real information.

Requires

Installation

Just run the following PHP code in your sources or Console:

//Include (MODX)EvolutionCMS.libraries.ddInstaller
require_once(
	$modx->getConfig('base_path') .
	'assets/libs/ddInstaller/require.php'
);

//Install (MODX)EvolutionCMS.snippets.ddStartSnippet
\DDInstaller::install([
	'url' => 'https://github.com/DivanDesign/EvolutionCMS.snippets.ddStartSnippet',
	'type' => 'snippet',
]);
  • If ddStartSnippet is not exist on your site, ddInstaller will just install it.
  • If ddStartSnippet is already exist on your site, ddInstaller will check it version and update it if needed.

Manually

1. Elements → Snippets: Create a new snippet with the following data

  1. Snippet name: ddStartSnippet.
  2. Description: <b>1.0</b> Snippet description..
  3. Category: Core.
  4. Parse DocBlock: no.
  5. Snippet code (php): Insert content of the ddStartSnippet_snippet.php file from the archive.

2. Elements → Manage Files

  1. Create a new folder assets/snippets/ddStartSnippet/.
  2. Extract the archive to the folder (except ddStartSnippet_snippet.php).

Parameters description

General parameters

  • someParam1

    • Description: Parameter description.
    • Valid values:
      • string
      • integer
    • Required
  • someParam2

    • Description: Parameter description.
    • Valid values:
      • 0
      • 1
    • Default value: —

Output parameters

  • outputterParams

    • Description: Parameters to be passed to the specified outputter.
    • Valid values:
      • stringJsonObject — as JSON
      • stringHjsonObject — as HJSON
      • stringQueryFormatted — as Query string
      • It can also be set as a native PHP object or array (e. g. for calls through \DDTools\Snippet::runSnippet or $modx->runSnippet):
        • arrayAssociative
        • object
    • Default value: —
  • outputterParams->tpl

    • Description: Some template.
      • Available placeholders:
        • [+somePlaceholder1+] — placeholder 1 description
        • [+somePlaceholder2+] — placeholder 2 description
    • Valid values:
      • stringChunkName
      • string — use inline templates starting with @CODE:
    • Required
  • outputterParams->placeholders

    • Description: Additional data has to be passed into the outputterParams->tpl.
      • Nested objects and arrays are supported too:
        • {"someOne": "1", "someTwo": "test" } => [+someOne+], [+someTwo+].
        • {"some": {"a": "one", "b": "two"} } => [+some.a+], [+some.b+].
        • {"some": ["one", "two"] } => [+some.0+], [+some.1+].
    • Valid values: object
    • Default value: —

Examples

All examples are written using HJSON, but if you want you can use vanilla JSON instead.

Example 1 title

Some example description.

//Some exmaple code

Run the snippet through \DDTools\Snippet::runSnippet without DB and eval

//Include (MODX)EvolutionCMS.libraries.ddTools
require_once(
	$modx->getConfig('base_path') .
	'assets/libs/ddTools/modx.ddtools.class.php'
);

//Run (MODX)EvolutionCMS.snippets.ddStartSnippet
\DDTools\Snippet::runSnippet([
	'name' => 'ddStartSnippet',
	'params' => [
		'someParam1' => 'Some param value',
	],
]);

Links

About

This repository is snippet template. Use it when you create a new snippet repository.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Languages