-
-
Notifications
You must be signed in to change notification settings - Fork 468
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
5683126
commit 1997e9f
Showing
5 changed files
with
54 additions
and
49 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,11 +1,7 @@ | ||
{ | ||
|
||
"javascript" : [ | ||
|
||
"api_definition.js", | ||
"static/jquery.min.js", | ||
"static/zephir-doc.js" | ||
|
||
] | ||
|
||
} | ||
} |
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 |
---|---|---|
@@ -1,55 +1,63 @@ | ||
<?php | ||
|
||
$items = array( | ||
array("name" => "Classes" , "url" => "/classes.html" ), | ||
$items[] = array("name" => $fullName) | ||
); | ||
/** | ||
* @var string $fullName | ||
* @var string $className | ||
* @var array $methods | ||
* @var string[] $namespacePieces | ||
* @var Zephir\ClassDefinition $classDefinition | ||
* @var Zephir\CompilerFile $compilerFile | ||
*/ | ||
|
||
$items = [ | ||
['name' => 'Classes' , 'url' => '/classes.html'], | ||
$items[] = ['name' => $fullName] | ||
]; | ||
?> | ||
|
||
<?= $this->partial("partials/breadcrumb.phtml",array("items"=> $items)) ?> | ||
<?= $this->partial('partials/breadcrumb.phtml', ['items'=> $items]) ?> | ||
|
||
<div class="class-header clearfix"> | ||
|
||
|
||
|
||
<div class="access-buttons"> | ||
<a class="zep-button" href="<?= $this->url(Zephir\Documentation::sourceUrl($classDefinition)) ?>">Source</a> | ||
|
||
<?php if($this->themeOption("github")){ ?> | ||
<a class="zep-button" href="<?= $this->themeOption("github") . "/tree/master/" . $compilerFile->getFilePath() ?>">Github</a> | ||
<?php if ($this->themeOption('github')) { ?> | ||
<a class="zep-button" | ||
href="<?= rtrim($this->themeOption('github'), '/') . "/tree/master/{$compilerFile->getFilePath()}" ?>"> | ||
GitHub | ||
</a> | ||
<?php } ?> | ||
</div> | ||
|
||
<div class="class-full-name"> | ||
|
||
<span class="class-type">Class</span> | ||
|
||
<?php foreach($namespacePieces as $nsname => $nspath){ ?> | ||
<?php foreach ($namespacePieces as $nsname => $nspath) { ?> | ||
<span class="namespace-piece"> | ||
<a href="<?= $this->url(Zephir\Documentation::namespaceUrl($nspath)) ?>"><?=$nsname?></a> | ||
<a href="<?= $this->url(Zephir\Documentation::namespaceUrl($nspath)) ?>"> | ||
<?=$nsname?> | ||
</a> | ||
</span> | ||
<?php } ?> | ||
|
||
<h1 class="class-name"><?= $className ?></h1> | ||
</div> | ||
|
||
</div> | ||
|
||
|
||
<div class="hidden-anchor" id="methods"></div> | ||
<div class="methods-summary standard-bandeau">Methods</div> | ||
<ul class="method-summary-list"> | ||
<?php foreach($methods as $method){ ?> | ||
|
||
<?= $this->partial("partials/class/method-summary.phtml",array("method"=>$method)) ?> | ||
|
||
<?php } ?> | ||
<ul class="method-summary-list"> | ||
<?php foreach ($methods as $method): ?> | ||
<?= $this->partial('partials/class/method-summary.phtml', ['method' => $method]) ?> | ||
<?php endforeach; ?> | ||
</ul> | ||
|
||
<div class="hidden-anchor" id="methods-details"></div> | ||
<div class="hidden-anchor" id="methods-details"></div> | ||
<div class="methods-summary standard-bandeau">Methods Details</div> | ||
<ul class="method-details-list"> | ||
<?php foreach($methods as $method){ ?> | ||
|
||
<?= $this->partial("partials/class/method-details.phtml",array("method"=>$method)) ?> | ||
|
||
<?php } ?> | ||
</ul> | ||
<ul class="method-details-list"> | ||
<?php foreach ($methods as $method): ?> | ||
<?= $this->partial('partials/class/method-details.phtml', ['method' => $method]) ?> | ||
<?php endforeach; ?> | ||
</ul> |
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
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
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 |
---|---|---|
@@ -1,18 +1,12 @@ | ||
{ | ||
|
||
"extends" : "api-base", | ||
|
||
"javascript" : [ | ||
|
||
"static/prettify.js" | ||
|
||
], | ||
|
||
"css" : [ | ||
|
||
"static/prettify.css", | ||
"static/zephir-theme.css" | ||
|
||
] | ||
|
||
} | ||
} |