This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App; | |
use Nette\Web\Html; | |
class DoctrineLogger implements \Doctrine\DBAL\Logging\SQLLogger, \Nette\IDebugPanel | |
{ | |
private $events = array(); | |
/******** Doctrine\DBAL\Logging\SQLLogger *********/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Controls; | |
class Foo extends \App\Basis\Control | |
{ | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
use Nette\Application\AppForm; | |
class TestPresenter extends Nette\Application\Presenter | |
{ | |
public function renderDefault() | |
{ | |
$this['test']->render(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace Nette\Caching; | |
use Nette; | |
/** | |
* APC caching storage | |
* @author Michael Moravec | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace App\Basis; | |
use Doctrine, Nette, Nette\Web\Html; | |
/** | |
* @author Štěpán Svoboda | |
* @author Michael Moravec | |
*/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
class Foo | |
{ | |
public $bar; | |
public function __construct() | |
{ | |
$this->update(5); | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace DataGrid\DataSources\Dibi; | |
use Nette, | |
DataGrid\DataSources\IDataSource, | |
DataGrid\DataSources, | |
dibi, | |
DibiDataSource; | |
/** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
namespace DataGrid\DataSources\Dibi; | |
use DataGrid\DataSources\IDataSource, | |
DataGrid\DataSources, | |
dibi; | |
/** | |
* Dibi fluent based data source |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
Nette\Debug::enable(array('12.34.56.78, 11.22.33.44'), NULL,'[email protected]'); | |
$application->catchExceptions = Nette\Environment::isProduction(); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* namespace DJPW; */ | |
/** | |
* Perform transformation of BBCodes | |
* | |
* @copyright 2010 Diskuze.JakPsatWeb.cz | |
*/ | |
final class BBCode |
OlderNewer