Amiro.CMS API Reference
Amiro.Ru / Manual
Loading search...

Source for file my_functions.php

Documentation is available at my_functions.php

  • <?php
  • /**
  •  * Custom file with some functions for sample plugin.
  •  *
  •  * @copyright  Amiro.CMS. All rights reserved.
  •  * @package    Plugin_Sample
  •  * @filesource
  •  * @version    $Id: my_functions.php 61273 2013-08-07 10:47:54Z Leontiev Anton $
  •  */
  •  
  • /**
  •  * @param  string $string 
  •  * @return string 
  •  */
  • function plgStrToUpper($string){
  •     $res mb_strtoupper($string);
  •     return $res;
  • }