-
-
Notifications
You must be signed in to change notification settings - Fork 219
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
initial commit (see http://phpfashion.com/ladenka-jak-se-vam-libi)
- Loading branch information
0 parents
commit 662db86
Showing
22 changed files
with
2,061 additions
and
0 deletions.
There are no files selected for viewing
Empty file.
Large diffs are not rendered by default.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
|
||
/** | ||
* Nette Framework | ||
* | ||
* Copyright (c) 2004, 2008 David Grudl (http://davidgrudl.com) | ||
* | ||
* This source file is subject to the "Nette license" that is bundled | ||
* with this package in the file license.txt. | ||
* | ||
* For more information please see http://nettephp.com/ | ||
* | ||
* @copyright Copyright (c) 2004, 2008 David Grudl | ||
* @license http://nettephp.com/license Nette license | ||
* @link http://nettephp.com/ | ||
* @category Nette | ||
* @package Nette | ||
*/ | ||
|
||
|
||
/** | ||
* Debugger template - close panel | ||
* | ||
* @author David Grudl | ||
* @copyright Copyright (c) 2004, 2008 David Grudl | ||
* @package Nette | ||
* @version $Revision: 13 $ $Date: 2008-02-19 18:47:11 +0100 (út, 19 II 2008) $ | ||
*/ | ||
|
||
// passed parameters: none | ||
|
||
|
||
|
||
?> | ||
</div> | ||
</div> |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,38 @@ | ||
<?php | ||
|
||
/** | ||
* Nette Framework | ||
* | ||
* Copyright (c) 2004, 2008 David Grudl (http://davidgrudl.com) | ||
* | ||
* This source file is subject to the "Nette license" that is bundled | ||
* with this package in the file license.txt. | ||
* | ||
* For more information please see http://nettephp.com/ | ||
* | ||
* @copyright Copyright (c) 2004, 2008 David Grudl | ||
* @license http://nettephp.com/license Nette license | ||
* @link http://nettephp.com/ | ||
* @category Nette | ||
* @package Nette | ||
*/ | ||
|
||
|
||
/** | ||
* Debugger template - open panel | ||
* | ||
* @author David Grudl | ||
* @copyright Copyright (c) 2004, 2008 David Grudl | ||
* @package Nette | ||
* @version $Revision: 13 $ $Date: 2008-02-19 18:47:11 +0100 (út, 19 II 2008) $ | ||
*/ | ||
|
||
// passed parameters: $name, $collaped, $id | ||
|
||
|
||
|
||
?> | ||
<div class="panel"> | ||
<h2><a href="#" onclick="return !toggle(this, 'pnl<?php echo $id ?>')"><?php echo htmlSpecialChars($name) ?> <span><?php echo $collaped ? '▶' : '▼' ?></span></a></h2> | ||
|
||
<div id="pnl<?php echo $id ?>" class="<?php echo $collaped ? 'collapsed ' : '' ?>inner"> |
Oops, something went wrong.