PHP code example of doldenroller / k3-translation-status

1. Go to this page and download the library: Download doldenroller/k3-translation-status library. Choose the download type require.

2. Extract the ZIP file and open the index.php.

3. Add this code to the index.php.
    
        
<?php
require_once('vendor/autoload.php');

/* Start to develop here. Best regards https://php-download.com/ */

    

doldenroller / k3-translation-status example snippets



  // again either comma-separeted
  'doldenroller.templatestatus.ignore' => 'solutions, default'

  // or as array
  'doldenroller.templatestatus.ignore' => ['solutions', 'default']


  // complete disabled
  'doldenroller.templatestatus.delete' => false

  // again either comma-separeted
  'doldenroller.templatestatus.delete' => 'admin, [email protected]'

  // or as array
  'doldenroller.templatestatus.delete' => ['admin', '[email protected]']

yaml
  # complete disabled
  delete: false

  # as comma-sperated list
  delete: admin, [email protected]

  # or as normal list
  delete:
    - admin
    - [email protected]