PHP Classes

File: src/Jaxon.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon   ???   Download  
File: src/???
Role: Class source
Content typex: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change: Change the separator option processing.
Merge commit 'ad2bbee761f90bd5be9ed7cafe1099856dc7827b' as 'jaxon-core'
Date: 22 days ago
Size: 737 bytes
 

Contents

Class file image Download
<?php

/**
 * Jaxon.php - Jaxon class
 *
 * Defines a few constants for the library.
 *
 * @package jaxon-core
 * @author Thierry Feuzeu <[email protected]>
 * @copyright 2022 Thierry Feuzeu <[email protected]>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */

namespace Jaxon;

class
Jaxon
{
   
/**
     * @const string
     */
   
public const VERSION = 'Jaxon 5.x';

   
/**
     * @const string
     */
   
public const CALLABLE_CLASS = 'CallableClass';

   
/**
     * @const string
     */
   
public const CALLABLE_DIR = 'CallableDir';

   
/**
     * @const string
     */
   
public const CALLABLE_FUNCTION = 'CallableFunction';
}