SproutCMS

This is the code documentation for the SproutCMS project

source of /config/branding.php

Name of the product
If significant changes to the product are made, it's requested to change this
  1. <?php
  2. use Sprout\Helpers\Text;
  3.  
  4.  
  5. /**
  6.  * Name of the product
  7.  * If significant changes to the product are made, it's requested to change this
  8.  */
  9. $config['product_name'] = 'SproutCMS';
  10.  
  11. /**
  12.  * URL to product website
  13.  * If significant changes to the product are made, it's requested to change this
  14.  */
  15. $config['product_url'] = 'http://getsproutcms.com/';
  16.  
  17. /**
  18.  * Name of the organisation to contact for support
  19.  */
  20. $config['support_organisation'] = 'SproutCMS team';
  21.  
  22. /**
  23.  * URL to contact for support
  24.  */
  25. $config['support_url'] = 'http://getsproutcms.com/';
  26.  
  27. /**
  28.  * Copyright statement, for the footer
  29.  */
  30. $config['copyright_html'] = '&copy; ' . Text::copyright('2015') . ' <a href="http://www.karmabunny.com.au/">Karmabunny</a>';
  31.  
  32. /**
  33.  * URL to a users' manual for the current site
  34.  */
  35. $config['manual_url'] = 'http://manual.getsproutcms.com/3.0';
  36.