Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
Y
yii2
Project
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
PSDI Army
yii2
Commits
29753b3e
Commit
29753b3e
authored
Jan 29, 2014
by
Carsten Brandt
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
apidocs: use erusev/parsedown for markdown parsing
added quick and dirty code highlighing and got much faster
parent
62290c13
Hide whitespace changes
Inline
Side-by-side
Showing
15 changed files
with
66 additions
and
105 deletions
+66
-105
composer.json
extensions/apidoc/composer.json
+2
-1
Markdown.php
extensions/apidoc/helpers/Markdown.php
+34
-74
Renderer.php
extensions/apidoc/templates/bootstrap/Renderer.php
+3
-3
index.php
extensions/apidoc/templates/bootstrap/views/index.php
+2
-2
Renderer.php
extensions/apidoc/templates/html/Renderer.php
+2
-2
constSummary.php
extensions/apidoc/templates/html/views/constSummary.php
+2
-2
eventDetails.php
extensions/apidoc/templates/html/views/eventDetails.php
+2
-2
eventSummary.php
extensions/apidoc/templates/html/views/eventSummary.php
+2
-2
methodDetails.php
extensions/apidoc/templates/html/views/methodDetails.php
+6
-6
methodSummary.php
extensions/apidoc/templates/html/views/methodSummary.php
+2
-2
propertyDetails.php
extensions/apidoc/templates/html/views/propertyDetails.php
+2
-2
propertySummary.php
extensions/apidoc/templates/html/views/propertySummary.php
+2
-2
seeAlso.php
extensions/apidoc/templates/html/views/seeAlso.php
+1
-1
type.php
extensions/apidoc/templates/html/views/type.php
+3
-3
index.php
extensions/apidoc/templates/online/views/index.php
+1
-1
No files found.
extensions/apidoc/composer.json
View file @
29753b3e
...
@@ -21,7 +21,8 @@
...
@@ -21,7 +21,8 @@
"require"
:
{
"require"
:
{
"yiisoft/yii2"
:
"*"
,
"yiisoft/yii2"
:
"*"
,
"yiisoft/yii2-bootstrap"
:
"*"
,
"yiisoft/yii2-bootstrap"
:
"*"
,
"phpdocumentor/reflection"
:
"dev-master | >1.0.2"
"phpdocumentor/reflection"
:
"dev-master | >1.0.2"
,
"erusev/parsedown"
:
"0.9.*"
},
},
"autoload"
:
{
"autoload"
:
{
"psr-4"
:
{
"yii
\\
apidoc
\\
"
:
""
}
"psr-4"
:
{
"yii
\\
apidoc
\\
"
:
""
}
...
...
extensions/apidoc/helpers/Markdown.php
View file @
29753b3e
...
@@ -7,10 +7,8 @@
...
@@ -7,10 +7,8 @@
namespace
yii\apidoc\helpers
;
namespace
yii\apidoc\helpers
;
use
phpDocumentor\Reflection\DocBlock\Type\Collection
;
use
Parsedown
;
use
yii\apidoc\models\MethodDoc
;
use
yii\base\Component
;
use
yii\apidoc\models\TypeDoc
;
use
yii\apidoc\templates\BaseRenderer
;
/**
/**
* A Markdown helper with support for class reference links.
* A Markdown helper with support for class reference links.
...
@@ -18,83 +16,45 @@ use yii\apidoc\templates\BaseRenderer;
...
@@ -18,83 +16,45 @@ use yii\apidoc\templates\BaseRenderer;
* @author Carsten Brandt <mail@cebe.cc>
* @author Carsten Brandt <mail@cebe.cc>
* @since 2.0
* @since 2.0
*/
*/
class
Markdown
extends
\yii\helpers\Markdown
class
Markdown
extends
Component
{
{
/**
private
$_parseDown
;
* @var BaseRenderer
*/
public
static
$renderer
;
/**
protected
function
getParseDown
()
* Converts markdown into HTML
*
* @param string $content
* @param TypeDoc $context
* @return string
*/
public
static
function
process
(
$content
,
$context
=
null
)
{
{
if
(
is_string
(
$context
)
)
{
if
(
$this
->
_parseDown
===
null
)
{
$
context
=
static
::
$renderer
->
context
->
getType
(
$context
);
$
this
->
_parseDown
=
new
ParseDown
(
);
}
}
return
$this
->
_parseDown
;
}
$content
=
trim
(
parent
::
process
(
$content
,
[]));
public
function
parse
(
$markdown
)
if
(
!
strncmp
(
$content
,
'<p>'
,
3
)
&&
substr
(
$content
,
-
4
,
4
)
==
'</p>'
)
{
{
$content
=
substr
(
$content
,
3
,
-
4
);
return
$this
->
getParseDown
()
->
parse
(
$markdown
);
}
}
$content
=
preg_replace_callback
(
'/\[\[([\w\d\\\\\(\):$]+)(\|[^\]]*)?\]\]/xm'
,
function
(
$matches
)
use
(
$context
)
{
public
function
parseLine
(
$markdown
)
$object
=
$matches
[
1
];
{
$title
=
(
empty
(
$matches
[
2
])
||
$matches
[
2
]
==
'|'
)
?
null
:
substr
(
$matches
[
2
],
1
);
return
$this
->
getParseDown
()
->
parseLine
(
$markdown
);
}
if
((
$pos
=
strpos
(
$object
,
'::'
))
!==
false
)
{
public
function
registerBlockHander
(
$blockName
,
$callback
)
$typeName
=
substr
(
$object
,
0
,
$pos
);
{
$subjectName
=
substr
(
$object
,
$pos
+
2
);
$this
->
getParseDown
()
->
register_block_handler
(
$blockName
,
$callback
);
if
(
$context
!==
null
)
{
}
// Collection resolves relative types
$typeName
=
(
new
Collection
([
$typeName
],
$context
->
phpDocContext
))
->
__toString
();
}
$type
=
static
::
$renderer
->
context
->
getType
(
$typeName
);
if
(
$type
===
null
)
{
static
::
$renderer
->
context
->
errors
[]
=
[
'file'
=>
(
$context
!==
null
)
?
$context
->
sourceFile
:
null
,
'message'
=>
'broken link to '
.
$typeName
.
'::'
.
$subjectName
.
((
$context
!==
null
)
?
' in '
.
$context
->
name
:
''
),
];
return
'<span style="background: #f00;">'
.
$typeName
.
'::'
.
$subjectName
.
'</span>'
;
}
else
{
if
((
$subject
=
$type
->
findSubject
(
$subjectName
))
!==
null
)
{
if
(
$title
===
null
)
{
$title
=
$type
->
name
.
'::'
.
$subject
->
name
;
if
(
$subject
instanceof
MethodDoc
)
{
$title
.=
'()'
;
}
}
return
static
::
$renderer
->
subjectLink
(
$subject
,
$title
);
}
else
{
static
::
$renderer
->
context
->
errors
[]
=
[
'file'
=>
(
$context
!==
null
)
?
$context
->
sourceFile
:
null
,
'message'
=>
'broken link to '
.
$type
->
name
.
'::'
.
$subjectName
.
((
$context
!==
null
)
?
' in '
.
$context
->
name
:
''
),
];
return
'<span style="background: #ff0;">'
.
$type
->
name
.
'</span><span style="background: #f00;">::'
.
$subjectName
.
'</span>'
;
}
}
}
elseif
(
$context
!==
null
&&
(
$subject
=
$context
->
findSubject
(
$object
))
!==
null
)
{
return
static
::
$renderer
->
subjectLink
(
$subject
,
$title
);
}
if
(
$context
!==
null
)
{
// Collection resolves relative types
$object
=
(
new
Collection
([
$object
],
$context
->
phpDocContext
))
->
__toString
();
}
if
((
$type
=
static
::
$renderer
->
context
->
getType
(
$object
))
!==
null
)
{
return
static
::
$renderer
->
typeLink
(
$type
,
$title
);
}
static
::
$renderer
->
context
->
errors
[]
=
[
'file'
=>
(
$context
!==
null
)
?
$context
->
sourceFile
:
null
,
'message'
=>
'broken link to '
.
$object
.
((
$context
!==
null
)
?
' in '
.
$context
->
name
:
''
),
];
return
'<span style="background: #f00;">'
.
$object
.
'</span>'
;
},
$content
);
return
$content
;
public
function
unregisterBlockHander
(
$blockName
)
{
$this
->
getParseDown
()
->
remove_block_handler
(
$blockName
);
}
public
function
registerInlineMarkerHandler
(
$marker
,
$callback
)
{
$this
->
getParseDown
()
->
add_span_marker
(
$marker
,
$callback
);
}
public
function
unregisterInlineMarkerHandler
(
$marker
)
{
$this
->
getParseDown
()
->
remove_span_marker
(
$marker
);
}
}
}
}
extensions/apidoc/templates/bootstrap/Renderer.php
View file @
29753b3e
...
@@ -6,7 +6,7 @@
...
@@ -6,7 +6,7 @@
*/
*/
namespace
yii\apidoc\templates\bootstrap
;
namespace
yii\apidoc\templates\bootstrap
;
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\Context
;
use
yii\apidoc\models\Context
;
use
yii\console\Controller
;
use
yii\console\Controller
;
use
Yii
;
use
Yii
;
...
@@ -145,7 +145,7 @@ class Renderer extends \yii\apidoc\templates\html\Renderer
...
@@ -145,7 +145,7 @@ class Renderer extends \yii\apidoc\templates\html\Renderer
mkdir
(
$dir
,
0777
,
true
);
mkdir
(
$dir
,
0777
,
true
);
}
}
Markdown
::
$renderer
=
$this
;
Api
Markdown
::
$renderer
=
$this
;
$fileCount
=
count
(
$files
)
+
1
;
$fileCount
=
count
(
$files
)
+
1
;
Console
::
startProgress
(
0
,
$fileCount
,
'Rendering markdown files: '
,
false
);
Console
::
startProgress
(
0
,
$fileCount
,
'Rendering markdown files: '
,
false
);
...
@@ -165,7 +165,7 @@ class Renderer extends \yii\apidoc\templates\html\Renderer
...
@@ -165,7 +165,7 @@ class Renderer extends \yii\apidoc\templates\html\Renderer
}
}
foreach
(
$fileData
as
$file
=>
$content
)
{
foreach
(
$fileData
as
$file
=>
$content
)
{
$output
=
Markdown
::
process
(
$content
);
// TODO generate links to yiiframework.com by default
$output
=
Api
Markdown
::
process
(
$content
);
// TODO generate links to yiiframework.com by default
$output
=
$this
->
fixMarkdownLinks
(
$output
);
$output
=
$this
->
fixMarkdownLinks
(
$output
);
if
(
$this
->
guideLayout
!==
false
)
{
if
(
$this
->
guideLayout
!==
false
)
{
$params
=
[
$params
=
[
...
...
extensions/apidoc/templates/bootstrap/views/index.php
View file @
29753b3e
...
@@ -9,7 +9,7 @@ use yii\apidoc\models\TraitDoc;
...
@@ -9,7 +9,7 @@ use yii\apidoc\models\TraitDoc;
*/
*/
if
(
isset
(
$readme
))
{
if
(
isset
(
$readme
))
{
echo
\yii\apidoc\helpers\Markdown
::
process
(
$readme
);
echo
\yii\apidoc\helpers\
Api
Markdown
::
process
(
$readme
);
}
}
?>
<h1>
Class Reference
</h1>
?>
<h1>
Class Reference
</h1>
...
@@ -30,7 +30,7 @@ foreach($types as $i=>$class):
...
@@ -30,7 +30,7 @@ foreach($types as $i=>$class):
?>
?>
<tr>
<tr>
<td>
<?=
$this
->
context
->
typeLink
(
$class
,
$class
->
name
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$class
,
$class
->
name
)
?>
</td>
<td>
<?=
\yii\apidoc\helpers\
Markdown
::
process
(
$class
->
shortDescription
,
$class
)
?>
</td>
<td>
<?=
\yii\apidoc\helpers\
ApiMarkdown
::
process
(
$class
->
shortDescription
,
$class
,
true
)
?>
</td>
</tr>
</tr>
<?php
endforeach
;
?>
<?php
endforeach
;
?>
</table>
</table>
extensions/apidoc/templates/html/Renderer.php
View file @
29753b3e
...
@@ -7,7 +7,7 @@
...
@@ -7,7 +7,7 @@
namespace
yii\apidoc\templates\html
;
namespace
yii\apidoc\templates\html
;
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\BaseDoc
;
use
yii\apidoc\models\BaseDoc
;
use
yii\apidoc\models\ConstDoc
;
use
yii\apidoc\models\ConstDoc
;
use
yii\apidoc\models\EventDoc
;
use
yii\apidoc\models\EventDoc
;
...
@@ -65,7 +65,7 @@ abstract class Renderer extends BaseRenderer implements ViewContextInterface
...
@@ -65,7 +65,7 @@ abstract class Renderer extends BaseRenderer implements ViewContextInterface
public
function
init
()
public
function
init
()
{
{
Markdown
::
$renderer
=
$this
;
Api
Markdown
::
$renderer
=
$this
;
}
}
/**
/**
...
...
extensions/apidoc/templates/html/views/constSummary.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\ArrayHelper
;
...
@@ -33,7 +33,7 @@ ArrayHelper::multisort($constants, 'name');
...
@@ -33,7 +33,7 @@ ArrayHelper::multisort($constants, 'name');
<tr
<?=
$constant
->
definedBy
!=
$type
->
name
?
' class="inherited"'
:
''
?>
id=
"
<?=
$constant
->
name
?>
"
>
<tr
<?=
$constant
->
definedBy
!=
$type
->
name
?
' class="inherited"'
:
''
?>
id=
"
<?=
$constant
->
name
?>
"
>
<td>
<?=
$constant
->
name
?>
<a
name=
"
<?=
$constant
->
name
?>
-detail"
></a></td>
<td>
<?=
$constant
->
name
?>
<a
name=
"
<?=
$constant
->
name
?>
-detail"
></a></td>
<td>
<?=
$constant
->
value
?>
</td>
<td>
<?=
$constant
->
value
?>
</td>
<td>
<?=
Markdown
::
process
(
$constant
->
shortDescription
.
"
\n
"
.
$constant
->
description
,
$constant
->
definedBy
)
?>
</td>
<td>
<?=
APiMarkdown
::
process
(
$constant
->
shortDescription
.
"
\n
"
.
$constant
->
description
,
$constant
->
definedBy
,
true
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$constant
->
definedBy
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$constant
->
definedBy
)
?>
</td>
</tr>
</tr>
<?php
endforeach
;
?>
<?php
endforeach
;
?>
...
...
extensions/apidoc/templates/html/views/eventDetails.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\ArrayHelper
;
...
@@ -32,7 +32,7 @@ ArrayHelper::multisort($events, 'name');
...
@@ -32,7 +32,7 @@ ArrayHelper::multisort($events, 'name');
<?php echo $event->trigger->signature; ?>
<?php echo $event->trigger->signature; ?>
</div>*/
?>
</div>*/
?>
<p>
<?=
Markdown
::
process
(
$event
->
description
,
$type
);
?>
</p>
<p>
<?=
Api
Markdown
::
process
(
$event
->
description
,
$type
);
?>
</p>
<?=
$this
->
render
(
'seeAlso'
,
[
'object'
=>
$event
]);
?>
<?=
$this
->
render
(
'seeAlso'
,
[
'object'
=>
$event
]);
?>
...
...
extensions/apidoc/templates/html/views/eventSummary.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\ArrayHelper
;
...
@@ -34,7 +34,7 @@ ArrayHelper::multisort($events, 'name');
...
@@ -34,7 +34,7 @@ ArrayHelper::multisort($events, 'name');
<td>
<?=
$this
->
context
->
subjectLink
(
$event
)
?>
</td>
<td>
<?=
$this
->
context
->
subjectLink
(
$event
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$event
->
types
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$event
->
types
)
?>
</td>
<td>
<td>
<?=
Markdown
::
process
(
$event
->
shortDescription
,
$event
->
definedBy
)
?>
<?=
ApiMarkdown
::
process
(
$event
->
shortDescription
,
$event
->
definedBy
,
true
)
?>
<?php
if
(
!
empty
(
$event
->
since
))
:
?>
<?php
if
(
!
empty
(
$event
->
since
))
:
?>
(available since version
<?php
echo
$event
->
since
;
?>
)
(available since version
<?php
echo
$event
->
since
;
?>
)
<?php
endif
;
?>
<?php
endif
;
?>
...
...
extensions/apidoc/templates/html/views/methodDetails.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\ArrayHelper
;
...
@@ -39,21 +39,21 @@ ArrayHelper::multisort($methods, 'name');
...
@@ -39,21 +39,21 @@ ArrayHelper::multisort($methods, 'name');
<tr>
<tr>
<td
class=
"paramNameCol"
>
<?=
$param
->
name
?>
</td>
<td
class=
"paramNameCol"
>
<?=
$param
->
name
?>
</td>
<td
class=
"paramTypeCol"
>
<?=
$this
->
context
->
typeLink
(
$param
->
types
)
?>
</td>
<td
class=
"paramTypeCol"
>
<?=
$this
->
context
->
typeLink
(
$param
->
types
)
?>
</td>
<td
class=
"paramDescCol"
>
<?=
Markdown
::
process
(
$param
->
description
,
$type
)
?>
</td>
<td
class=
"paramDescCol"
>
<?=
Api
Markdown
::
process
(
$param
->
description
,
$type
)
?>
</td>
</tr>
</tr>
<?php
endforeach
;
?>
<?php
endforeach
;
?>
<?php
if
(
!
empty
(
$method
->
return
))
:
?>
<?php
if
(
!
empty
(
$method
->
return
))
:
?>
<tr>
<tr>
<td
class=
"paramNameCol"
>
<?=
'return'
;
?>
</td>
<td
class=
"paramNameCol"
>
<?=
'return'
;
?>
</td>
<td
class=
"paramTypeCol"
>
<?=
$this
->
context
->
typeLink
(
$method
->
returnTypes
);
?>
</td>
<td
class=
"paramTypeCol"
>
<?=
$this
->
context
->
typeLink
(
$method
->
returnTypes
);
?>
</td>
<td
class=
"paramDescCol"
>
<?=
Markdown
::
process
(
$method
->
return
,
$type
);
?>
</td>
<td
class=
"paramDescCol"
>
<?=
Api
Markdown
::
process
(
$method
->
return
,
$type
);
?>
</td>
</tr>
</tr>
<?php
endif
;
?>
<?php
endif
;
?>
<?php
foreach
(
$method
->
exceptions
as
$exception
=>
$description
)
:
?>
<?php
foreach
(
$method
->
exceptions
as
$exception
=>
$description
)
:
?>
<tr>
<tr>
<td
class=
"paramNameCol"
>
<?=
'throws'
?>
</td>
<td
class=
"paramNameCol"
>
<?=
'throws'
?>
</td>
<td
class=
"paramTypeCol"
>
<?=
$this
->
context
->
typeLink
(
$exception
)
?>
</td>
<td
class=
"paramTypeCol"
>
<?=
$this
->
context
->
typeLink
(
$exception
)
?>
</td>
<td
class=
"paramDescCol"
>
<?=
Markdown
::
process
(
$description
,
$type
)
?>
</td>
<td
class=
"paramDescCol"
>
<?=
Api
Markdown
::
process
(
$description
,
$type
)
?>
</td>
</tr>
</tr>
<?php
endforeach
;
?>
<?php
endforeach
;
?>
<?php
endif
;
?>
<?php
endif
;
?>
...
@@ -61,8 +61,8 @@ ArrayHelper::multisort($methods, 'name');
...
@@ -61,8 +61,8 @@ ArrayHelper::multisort($methods, 'name');
<!-- -->
<?php
//$this->renderPartial('sourceCode',array('object'=>$method)); ?>
<!-- -->
<?php
//$this->renderPartial('sourceCode',array('object'=>$method)); ?>
<
p
><?=
Markdown
::
process
(
$method
->
shortDescription
,
$typ
e
)
?>
</strong></p>
<
p
><?=
ApiMarkdown
::
process
(
$method
->
shortDescription
,
$type
,
tru
e
)
?>
</strong></p>
<p>
<?=
Markdown
::
process
(
$method
->
description
,
$type
)
?>
</p>
<p>
<?=
Api
Markdown
::
process
(
$method
->
description
,
$type
)
?>
</p>
<?=
$this
->
render
(
'seeAlso'
,
[
'object'
=>
$method
]);
?>
<?=
$this
->
render
(
'seeAlso'
,
[
'object'
=>
$method
]);
?>
...
...
extensions/apidoc/templates/html/views/methodSummary.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\InterfaceDoc
;
use
yii\apidoc\models\InterfaceDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\apidoc\models\TraitDoc
;
...
@@ -37,7 +37,7 @@ foreach($methods as $method): ?>
...
@@ -37,7 +37,7 @@ foreach($methods as $method): ?>
<?php
if
(
$protected
&&
$method
->
visibility
==
'protected'
||
!
$protected
&&
$method
->
visibility
!=
'protected'
)
:
?>
<?php
if
(
$protected
&&
$method
->
visibility
==
'protected'
||
!
$protected
&&
$method
->
visibility
!=
'protected'
)
:
?>
<tr
<?=
$method
->
definedBy
!=
$type
->
name
?
' class="inherited"'
:
''
?>
id=
"
<?=
$method
->
name
?>
()"
>
<tr
<?=
$method
->
definedBy
!=
$type
->
name
?
' class="inherited"'
:
''
?>
id=
"
<?=
$method
->
name
?>
()"
>
<td>
<?=
$this
->
context
->
subjectLink
(
$method
,
$method
->
name
.
'()'
)
?>
</td>
<td>
<?=
$this
->
context
->
subjectLink
(
$method
,
$method
->
name
.
'()'
)
?>
</td>
<td>
<?=
Markdown
::
process
(
$method
->
shortDescription
,
$method
->
definedBy
)
?>
</td>
<td>
<?=
ApiMarkdown
::
process
(
$method
->
shortDescription
,
$method
->
definedBy
,
true
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$method
->
definedBy
,
$type
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$method
->
definedBy
,
$type
)
?>
</td>
</tr>
</tr>
<?php
endif
;
?>
<?php
endif
;
?>
...
...
extensions/apidoc/templates/html/views/propertyDetails.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\ArrayHelper
;
...
@@ -34,7 +34,7 @@ ArrayHelper::multisort($properties, 'name');
...
@@ -34,7 +34,7 @@ ArrayHelper::multisort($properties, 'name');
<div
class=
"signature"
>
<?php
echo
$this
->
context
->
renderPropertySignature
(
$property
);
?>
</div>
<div
class=
"signature"
>
<?php
echo
$this
->
context
->
renderPropertySignature
(
$property
);
?>
</div>
<p>
<?=
Markdown
::
process
(
$property
->
description
,
$type
)
?>
</p>
<p>
<?=
Api
Markdown
::
process
(
$property
->
description
,
$type
)
?>
</p>
<?=
$this
->
render
(
'seeAlso'
,
[
'object'
=>
$property
]);
?>
<?=
$this
->
render
(
'seeAlso'
,
[
'object'
=>
$property
]);
?>
...
...
extensions/apidoc/templates/html/views/propertySummary.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\helpers\ArrayHelper
;
use
yii\helpers\ArrayHelper
;
...
@@ -38,7 +38,7 @@ foreach($properties as $property): ?>
...
@@ -38,7 +38,7 @@ foreach($properties as $property): ?>
<tr
<?=
$property
->
definedBy
!=
$type
->
name
?
' class="inherited"'
:
''
?>
id=
"
<?=
$property
->
name
?>
"
>
<tr
<?=
$property
->
definedBy
!=
$type
->
name
?
' class="inherited"'
:
''
?>
id=
"
<?=
$property
->
name
?>
"
>
<td>
<?=
$this
->
context
->
subjectLink
(
$property
)
?>
</td>
<td>
<?=
$this
->
context
->
subjectLink
(
$property
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$property
->
types
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$property
->
types
)
?>
</td>
<td>
<?=
Markdown
::
process
(
$property
->
shortDescription
,
$property
->
definedBy
)
?>
</td>
<td>
<?=
ApiMarkdown
::
process
(
$property
->
shortDescription
,
$property
->
definedBy
,
true
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$property
->
definedBy
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$property
->
definedBy
)
?>
</td>
</tr>
</tr>
<?php
endif
;
?>
<?php
endif
;
?>
...
...
extensions/apidoc/templates/html/views/seeAlso.php
View file @
29753b3e
...
@@ -25,7 +25,7 @@ if (empty($see)) {
...
@@ -25,7 +25,7 @@ if (empty($see)) {
<h4>
See Also
</h4>
<h4>
See Also
</h4>
<ul>
<ul>
<?php
foreach
(
$see
as
$ref
)
:
?>
<?php
foreach
(
$see
as
$ref
)
:
?>
<li>
<?=
\yii\apidoc\helpers\
Markdown
::
process
(
$ref
,
$object
->
definedBy
)
?>
</li>
<li>
<?=
\yii\apidoc\helpers\
ApiMarkdown
::
process
(
$ref
,
$object
->
definedBy
,
true
)
?>
</li>
<?php
endforeach
;
?>
<?php
endforeach
;
?>
</ul>
</ul>
</div>
</div>
extensions/apidoc/templates/html/views/type.php
View file @
29753b3e
<?php
<?php
use
yii\apidoc\helpers\Markdown
;
use
yii\apidoc\helpers\
Api
Markdown
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\ClassDoc
;
use
yii\apidoc\models\InterfaceDoc
;
use
yii\apidoc\models\InterfaceDoc
;
use
yii\apidoc\models\TraitDoc
;
use
yii\apidoc\models\TraitDoc
;
...
@@ -77,8 +77,8 @@ $renderer = $this->context;
...
@@ -77,8 +77,8 @@ $renderer = $this->context;
</
table
>
</
table
>
<
div
id
=
"classDescription"
>
<
div
id
=
"classDescription"
>
<
strong
><?=
Markdown
::
process
(
$type
->
shortDescription
,
$typ
e
)
?>
</strong>
<
strong
><?=
ApiMarkdown
::
process
(
$type
->
shortDescription
,
$type
,
tru
e
)
?>
</strong>
<p>
<?=
Markdown
::
process
(
$type
->
description
,
$type
)
?>
</p>
<p>
<?=
Api
Markdown
::
process
(
$type
->
description
,
$type
)
?>
</p>
</div>
</div>
<a
name=
"properties"
></a>
<a
name=
"properties"
></a>
...
...
extensions/apidoc/templates/online/views/index.php
View file @
29753b3e
...
@@ -26,7 +26,7 @@ foreach($types as $i=>$class):
...
@@ -26,7 +26,7 @@ foreach($types as $i=>$class):
?>
?>
<tr>
<tr>
<td>
<?=
$this
->
context
->
typeLink
(
$class
,
$class
->
name
)
?>
</td>
<td>
<?=
$this
->
context
->
typeLink
(
$class
,
$class
->
name
)
?>
</td>
<td>
<?=
\yii\apidoc\helpers\
Markdown
::
process
(
$class
->
shortDescription
,
$class
)
?>
</td>
<td>
<?=
\yii\apidoc\helpers\
ApiMarkdown
::
process
(
$class
->
shortDescription
,
$class
,
true
)
?>
</td>
</tr>
</tr>
<?php
endforeach
;
?>
<?php
endforeach
;
?>
</table>
</table>
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment