PATH:
home
/
lab2454c
/
healthvalidate.com
/
vendor
/
cloudinary
/
cloudinary_php
/
docs
/
themes
/
cloudinary
{% from _self import element %} window.projectVersion = '{{ project.version }}'; (function(root) { var bhIndex = null; var rootPath = ''; var treeHtml = '{{ element(tree, project.config('default_opened_level'), 0)|replace({"'": "\\'", "\n": ''})|raw }}'; var searchTypeClasses = { 'Namespace': 'label-default', 'Class': 'label-info', 'Interface': 'label-primary', 'Trait': 'label-success', 'Method': 'label-danger', '_': 'label-warning' }; var searchIndex = [ {% block search_index %} {% from _self import add_class_methods_index %} {% for ns in namespaces -%} {"type": "Namespace", "link": "{{ namespace_path(ns) }}", "name": "{{ ns|replace({'\\': '\\\\'})|raw }}", "doc": "Namespace {{ ns|replace({'\\': '\\\\'})|raw }}"}, {%- endfor %} {% for class in interfaces -%} {"type": "Interface", {% if class.namespace %}"fromName": "{{ class.namespace|replace({'\\': '\\\\'})|raw }}", "fromLink": "{{ namespace_path(class.namespace)|raw }}",{% endif %} "link": "{{ class_path(class) }}", "name": "{{ class.name|replace({'\\': '\\\\'})|raw }}", "doc": "{{ class.shortdesc|desc(class)|json_encode }}"}, {{ add_class_methods_index(class) }} {% endfor %} {% for class in classes -%} {"type": {% if class.isTrait %}"Trait"{% else %}"Class"{% endif %}, {% if class.namespace %}"fromName": "{{ class.namespace|replace({'\\': '\\\\'})|raw }}", "fromLink": "{{ namespace_path(class.namespace) }}",{% endif %} "link": "{{ class_path(class) }}", "name": "{{ class.name|replace({'\\': '\\\\'})|raw }}", "doc": "{{ class.shortdesc|desc(class)|json_encode }}"}, {{ add_class_methods_index(class) }} {% endfor %} {# Override this block, search_index_extra, to add custom search entries! #} {% block search_index_extra '' %} {% endblock %} // Fix trailing commas in the index {} ]; /** Tokenizes strings by namespaces and functions */ function tokenizer(term) { if (!term) { return []; } var tokens = [term]; var meth = term.indexOf('::'); // Split tokens into methods if "::" is found. if (meth > -1) { tokens.push(term.substr(meth + 2)); term = term.substr(0, meth - 2); } // Split by namespace or fake namespace. if (term.indexOf('\\') > -1) { tokens = tokens.concat(term.split('\\')); } else if (term.indexOf('_') > 0) { tokens = tokens.concat(term.split('_')); } // Merge in splitting the string by case and return tokens = tokens.concat(term.match(/(([A-Z]?[^A-Z]*)|([a-z]?[^a-z]*))/g).slice(0,-1)); return tokens; }; root.Sami = { /** * Cleans the provided term. If no term is provided, then one is * grabbed from the query string "search" parameter. */ cleanSearchTerm: function(term) { // Grab from the query string if (typeof term === 'undefined') { var name = 'search'; var regex = new RegExp("[\\?&]" + name + "=([^&#]*)"); var results = regex.exec(location.search); if (results === null) { return null; } term = decodeURIComponent(results[1].replace(/\+/g, " ")); } return term.replace(/<(?:.|\n)*?>/gm, ''); }, /** Searches through the index for a given term */ search: function(term) { // Create a new search index if needed if (!bhIndex) { bhIndex = new Bloodhound({ limit: 500, local: searchIndex, datumTokenizer: function (d) { return tokenizer(d.name); }, queryTokenizer: Bloodhound.tokenizers.whitespace }); bhIndex.initialize(); } results = []; bhIndex.get(term, function(matches) { results = matches; }); if (!rootPath) { return results; } // Fix the element links based on the current page depth. return $.map(results, function(ele) { if (ele.link.indexOf('..') > -1) { return ele; } ele.link = rootPath + ele.link; if (ele.fromLink) { ele.fromLink = rootPath + ele.fromLink; } return ele; }); }, /** Get a search class for a specific type */ getSearchClass: function(type) { return searchTypeClasses[type] || searchTypeClasses['_']; }, /** Add the left-nav tree to the site */ injectApiTree: function(ele) { ele.html(treeHtml); } }; $(function() { // Modify the HTML to work correctly based on the current depth rootPath = $('body').attr('data-root-path'); treeHtml = treeHtml.replace(/href="/g, 'href="' + rootPath); Sami.injectApiTree($('#api-tree')); }); return root.Sami; })(window); $(function() { // Enable the version switcher $('#version-switcher').change(function() { window.location = $(this).val() }); {% block treejs %} // Toggle left-nav divs on click $('#api-tree .hd span').click(function() { $(this).parent().parent().toggleClass('opened'); }); // Expand the parent namespaces of the current page. var expected = $('body').attr('data-name'); if (expected) { // Open the currently selected node and its parents. var container = $('#api-tree'); var node = $('#api-tree li[data-name="' + expected + '"]'); // Node might not be found when simulating namespaces if (node.length > 0) { node.addClass('active').addClass('opened'); node.parents('li').addClass('opened'); var scrollPos = node.offset().top - container.offset().top + container.scrollTop(); // Position the item nearer to the top of the screen. scrollPos -= 200; container.scrollTop(scrollPos); } } {% endblock %} {% verbatim %} var form = $('#search-form .typeahead'); form.typeahead({ hint: true, highlight: true, minLength: 1 }, { name: 'search', displayKey: 'name', source: function (q, cb) { cb(Sami.search(q)); } }); // The selection is direct-linked when the user selects a suggestion. form.on('typeahead:selected', function(e, suggestion) { window.location = suggestion.link; }); // The form is submitted when the user hits enter. form.keypress(function (e) { if (e.which == 13) { $('#search-form').submit(); return true; } }); {% endverbatim %} }); {% macro add_class_methods_index(class) %} {% if class.methods %} {% set from_name = class.name|replace({'\\': '\\\\'}) %} {% set from_link = class_path(class) %} {% for meth in class.methods %} {"type": "Method", "fromName": "{{ from_name|raw }}", "fromLink": "{{ from_link|raw }}", "link": "{{ method_path(meth) }}", "name": "{{ meth|replace({'\\': '\\\\'})|raw }}", "doc": "{{ meth.shortdesc|desc(class)|json_encode }}"}, {% endfor %} {% endif %} {% endmacro %} {% macro element(tree, opened, depth) %} {% from _self import element %} <ul> {%- for element in tree -%} {% if element[2] %} <li data-name="namespace:{{ element[1]|replace({'\\': '_'})|raw }}" {% if depth < opened %}class="opened"{% endif %}> <div style="padding-left:{{ (depth * 18)|raw }}px" class="hd"> <span class="glyphicon glyphicon-play"></span>{% if not project.config('simulate_namespaces') %}<a href="{{ namespace_path(element[1]) }}">{% endif %}{{ element[0]|raw }}{% if not project.config('simulate_namespaces') %}</a>{% endif %} </div> <div class="bd"> {{ element(element[2], opened, depth + 1) -}} </div> </li> {% else %} {% if (not (element[1].name ends with 'Trait')) and (not ('Base' in element[1].name)) and (not ('Interface' in element[1].name)) %} <li data-name="class:{{ (element[1].name)|replace({'\\': '_'}) }}" {% if depth < opened %}class="opened"{% endif %}> <div style="padding-left:{{ 8 + (depth * 18) }}px" class="hd leaf"> <a href="{{ class_path(element[1]) }}">{{ element[0] }}</a> </div> </li> {% endif %} {% endif %} {%- endfor %} </ul> {% endmacro %}
[+]
..
[-] manifest.yml
[edit]
[-] sami.js.twig
[edit]
[-] class.twig
[edit]
[-] macros.twig
[edit]
[+]
css
[+]
layout