PATH:
home
/
lab2454c
/
tripvare.com
/
vendor
/
cloudinary
/
cloudinary_php
/
docs
/
themes
/
cloudinary
{% extends "layout/layout.twig" %} {% from "macros.twig" import render_classes, breadcrumbs, namespace_link, class_link, property_link, method_link, hint_link, source_link, method_source_link, deprecated, deprecations, todo, todos %} {% block title %}{{ class|raw }} | {{ parent() }}{% endblock %} {% block body_class 'class' %} {% block page_id 'class:' ~ (class.name|replace({'\\': '_'})) %} {% block below_menu %} {% if class.namespace %} <div class="namespace-breadcrumbs"> <ol class="breadcrumb"> <li><span class="label label-default">{{ class.categoryName|raw }}</span></li> {{ breadcrumbs(class.namespace) -}} <li>{{ class.shortname|raw }}</li> </ol> </div> {% endif %} {% endblock %} {% block page_content %} <div class="page-header"> <h1> {{ class.name|split('\\')|last|raw }} {{ deprecated(class) }} </h1> </div> <p>{{ block('class_signature') }}</p> {{ deprecations(class) }} {% if class.shortdesc or class.longdesc %} <div class="description"> {% if class.shortdesc -%} <p>{{ class.shortdesc|desc(class) }}</p> {%- endif %} {% if class.longdesc -%} <p>{{ class.longdesc|desc(class) }}</p> {%- endif %} {% if project.config('insert_todos') == true %} {{ todos(class) }} {% endif %} </div> {% endif %} {#{% if traits %} <h2>Traits</h2> {{ render_classes(traits) }} {% endif %}#} {% if properties %} <h2>Properties</h2> {{ block('properties') }} {% endif %} {% if methods %} <h2>Methods</h2> {{ block('methods') }} <h2>Details</h2> {{ block('methods_details') }} {% endif %} {% if constants %} <h2>Constants</h2> {{ block('constants') }} {% endif %} {% endblock %} {% block class_signature -%} {% if not class.interface and class.abstract %}abstract {% endif %} {{ class.categoryName|raw }} <strong>{{ class.shortname|raw }}</strong> {%- if class.parent %} extends {{ class_link(class.parent) }} {%- endif %} {%- if class.interfaces|length > 0 %} implements {% for interface in class.interfaces %} {{- class_link(interface) }} {%- if not loop.last %}, {% endif %} {%- endfor %} {%- endif %} {{- source_link(project, class) }} {% endblock %} {% block method_signature -%} {% if method.final %}final{% endif %} {% if method.abstract %}abstract{% endif %} {% if method.static %}static{% endif %} {% if method.protected %}protected{% endif %} {% if method.private %}private{% endif %} {{ hint_link(method.hint) }} <strong>{{ method.name|raw }}</strong>{{ block('method_parameters_signature') }} {%- endblock %} {% block method_parameters_signature -%} {%- from "macros.twig" import method_parameters_signature -%} {{ method_parameters_signature(method) }} {{ deprecated(method) }} {%- endblock %} {% block parameters %} <table class="table table-condensed"> <thead> <tr> <th>Name</th> <th>Type</th> <th>Description</th> </tr> </thead> {% for parameter in method.parameters %} <tr> <td>{%- if parameter.variadic %}...{% endif %}${{ parameter.name|raw }}</td> <td>{% if parameter.hint %}{{ hint_link(parameter.hint) }}{% endif %}</td> <td>{{ parameter.shortdesc|desc(class) }}</td> </tr> {% endfor %} </table> {% endblock %} {% block return %} <table class="table table-condensed"> <tr> <td>{{ hint_link(method.hint) }}</td> <td>{{ method.hintDesc|desc(class) }}</td> </tr> </table> {% endblock %} {% block exceptions %} <table class="table table-condensed"> {% for exception in method.exceptions %} <tr> <td>{{ class_link(exception[0]) }}</td> <td>{{ exception[1]|desc(class) }}</td> </tr> {% endfor %} </table> {% endblock %} {% block see %} <table class="table table-condensed"> {% for see in method.see %} <tr> <td> {% if see[4] %} <a href="{{see[4]}}">{{see[4]}}</a> {% elseif see[3] %} {{ method_link(see[3], false, false) }} {% elseif see[2] %} {{ class_link(see[2]) }} {% else %} {{ see[0]|raw }} {% endif %} </td> <td>{{ see[1]|raw }}</td> </tr> {% endfor %} </table> {% endblock %} {% block constants %} <table class="table table-condensed"> {% for constant in constants %} <tr> <td>{{ constant.name|raw }}</td> <td class="last"> <p><em>{{ constant.shortdesc|desc(class) }}</em></p> <p>{{ constant.longdesc|desc(class) }}</p> </td> </tr> {% endfor %} </table> {% endblock %} {% block properties %} <table class="table table-condensed"> {% for property in properties %} <tr> <td class="type" id="property_{{ property.name|raw }}"> {% if property.static %}static{% endif %} {% if property.protected %}protected{% endif %} {% if property.private %}private{% endif %} {{ hint_link(property.hint) }} </td> <td>${{ property.name|raw }}</td> <td class="last">{{ property.shortdesc|desc(class) }}</td> <td> {%- if property.class is not same as(class) -%} <small>from {{ property_link(property, false, true) }}</small> {%- endif -%} </td> </tr> {% endfor %} </table> {% endblock %} {% block methods %} <div class="container-fluid underlined"> {% for method in methods %} <div class="row"> <div class="col-md-8 type"> <a href="#method_{{ method.name|raw }}">{{ method.name|raw }}</a>{{ block('method_parameters_signature') }} {% if not method.shortdesc %} <p class="no-description">No description</p> {% else %} <p>{{ method.shortdesc|desc(class) }}</p> {%- endif %} </div> {# <div class="col-md-2 type"> {% if method.static %}static {% endif %}{{ hint_link(method.hint) }} </div> <div class="col-md-2"> {%- if method.class is not same as(class) -%} <small>from {{ method_link(method, false, true) }}</small> {%- endif -%} </div> #} </div> {% endfor %} </div> {% endblock %} {% block methods_details %} <div id="method-details"> {% for method in methods %} <div class="method-item"> {{ block('method') }} </div> {% endfor %} </div> {% endblock %} {% block method %} <h3 id="method_{{ method.name|raw }}"> {#<div class="location">{% if method.class is not same as(class) %}in {{ method_link(method, false, true) }} {% endif %}at {{ method_source_link(method) }}</div>#} <code>{{ block('method_signature') }}</code> </h3> <div class="details"> {{ deprecations(method) }} {% if method.shortdesc or method.longdesc %} <div class="method-description"> {% if not method.shortdesc and not method.longdesc %} <p class="no-description">No description</p> {% else %} {% if method.shortdesc -%} <p>{{ method.shortdesc|desc(class) }}</p> {%- endif %} {% if method.longdesc -%} <p>{{ method.longdesc|desc(class) }}</p> {%- endif %} {%- endif %} {% if project.config('insert_todos') == true %} {{ todos(method) }} {% endif %} </div> {% endif %} <div class="tags"> {% if method.parameters %} <h4>Parameters</h4> {{ block('parameters') }} {% endif %} {% if method.hintDesc or method.hint %} <h4>Return Value</h4> {{ block('return') }} {% endif %} {% if method.exceptions %} <h4>Exceptions</h4> {{ block('exceptions') }} {% endif %} {% if method.tags('see') %} <h4>See also</h4> {{ block('see') }} {% endif %} </div> </div> {% endblock %}
[+]
..
[-] manifest.yml
[edit]
[-] sami.js.twig
[edit]
[-] class.twig
[edit]
[-] macros.twig
[edit]
[+]
css
[+]
layout