linea21-externals
[ class tree: linea21-externals ] [ index: linea21-externals ] [ all elements ]

Source for file filemanager.inc.php

Documentation is available at filemanager.inc.php

  1. <?php
  2. /**
  3.  *    Filemanager PHP connector
  4.  *
  5.  *    filemanager.php
  6.  *    use for ckeditor filemanager plug-in by Core Five - http://labs.corefive.com/Projects/FileManager/
  7.  *
  8.  *    @license    MIT License
  9.  *    @author        Riaan Los <mail (at) riaanlos (dot) nl>
  10.  *  @author        Simon Georget <simon (at) linea21 (dot) com>
  11.  *    @copyright    Authors
  12.  *  @package     linea21.externals
  13.  *  @subpackage Filemanager
  14.  */
  15.  
  16. if !function_exists('json_decode') ) {
  17.  
  18.   function json_decode($content$assoc=false){
  19.     require_once 'JSON.php';
  20.     if $assoc ){
  21.       $json new Services_JSON(SERVICES_JSON_LOOSE_TYPE);
  22.     else {
  23.       $json new Services_JSON;
  24.     }
  25.     return $json->decode($content);
  26.   }
  27.  
  28. }
  29.  
  30. if !function_exists('json_encode') ) {
  31.  
  32.   function json_encode($content{
  33.     require_once 'JSON.php';
  34.     $json new Services_JSON;
  35.     return $json->encode($content);
  36.   }
  37.  
  38. }
  39. ?>

Documentation generated on Thu, 03 May 2012 15:04:38 +0200 by phpDocumentor 1.4.1