Namespaces

  • Nette
    • Application
      • Diagnostics
      • Responses
      • Routers
      • UI
    • Caching
      • Storages
    • ComponentModel
    • Config
      • Adapters
      • Extensions
    • Database
      • Diagnostics
      • Drivers
      • Reflection
      • Table
    • DI
      • Diagnostics
    • Diagnostics
    • Forms
      • Controls
      • Rendering
    • Http
    • Iterators
    • Latte
      • Macros
    • Loaders
    • Localization
    • Mail
    • Reflection
    • Security
      • Diagnostics
    • Templating
    • Utils
      • PhpGenerator
  • NetteModule
  • none

Classes

  • ArrayHash
  • ArrayList
  • Callback
  • DateTime
  • Environment
  • Framework
  • FreezableObject
  • Image
  • Object
  • ObjectMixin

Interfaces

  • IFreezable

Exceptions

  • ArgumentOutOfRangeException
  • DeprecatedException
  • DirectoryNotFoundException
  • FatalErrorException
  • FileNotFoundException
  • InvalidArgumentException
  • InvalidStateException
  • IOException
  • MemberAccessException
  • NotImplementedException
  • NotSupportedException
  • OutOfRangeException
  • StaticClassException
  • UnexpectedValueException
  • UnknownImageFileException
  • Overview
  • Namespace
  • Class
  • Tree
  • Deprecated
  • Other releases
  • Nette homepage
 1: <?php
 2: 
 3: /**
 4:  * This file is part of the Nette Framework (https://nette.org)
 5:  * Copyright (c) 2004 David Grudl (http://davidgrudl.com)
 6:  */
 7: 
 8: namespace Nette;
 9: 
10: use Nette;
11: 
12: 
13: /**
14:  * The Nette Framework (https://nette.org)
15:  *
16:  * @author     David Grudl
17:  */
18: class Framework
19: {
20: 
21:     /** Nette Framework version identification */
22:     const NAME = 'Nette Framework',
23:         VERSION = '2.0.18',
24:         VERSION_ID = 20018,
25:         REVISION = 'released on 2014-12-22';
26: 
27:     /** @var bool set to TRUE if your host has disabled function ini_set */
28:     public static $iAmUsingBadHost = FALSE;
29: 
30: 
31:     /**
32:      * Static class - cannot be instantiated.
33:      */
34:     final public function __construct()
35:     {
36:         throw new StaticClassException;
37:     }
38: 
39: }
40: 
Nette 2.0 API documentation generated by ApiGen 2.8.0