Home
last modified time | relevance | path

Searched +full:- +full:php +full:- (Results 1 – 25 of 1385) sorted by relevance

12345678910>>...56

/plugin/findologicxmlexport/vendor/composer/
Dautoload_classmap.php1 <?php
3 // autoload_classmap.php @generated by Composer
9 'File_Iterator' => $vendorDir . '/phpunit/php-file-iterator/src/Iterator.php',
10 'File_Iterator_Facade' => $vendorDir . '/phpunit/php-file-iterator/src/Facade.php',
11 'File_Iterator_Factory' => $vendorDir . '/phpunit/php-file-iterator/src/Factory.php',
12 …PHPUnit\\Framework\\Assert' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/Assert.php',
13 …nFailedError' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/AssertionFailedError.php',
14 …BaseTestListener' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/BaseTestListener.php',
15 'PHPUnit\\Framework\\Test' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/Test.php',
16 …nit\\Framework\\TestCase' => $vendorDir . '/phpunit/phpunit/src/ForwardCompatibility/TestCase.php',
[all …]
Dautoload_static.php1 <?php
3 // autoload_static.php @generated by Composer
10 'e88992873b7765f9b5710cab95ba5dd7' => __DIR__ . '/..' . '/hoa/consistency/Prelude.php',
11 … '320cde22f66dd4f5d3fd621d3e88b98f' => __DIR__ . '/..' . '/symfony/polyfill-ctype/bootstrap.php',
12 '3e76f7f02b41af8cea96018933f6b7e3' => __DIR__ . '/..' . '/hoa/protocol/Wrapper.php',
13 …b4c8570aa390c21fafd04a26c69f' => __DIR__ . '/..' . '/myclabs/deep-copy/src/DeepCopy/deep_copy.php',
74 0 => __DIR__ . '/..' . '/phpdocumentor/reflection-common/src',
75 1 => __DIR__ . '/..' . '/phpdocumentor/reflection-docblock/src',
76 2 => __DIR__ . '/..' . '/phpdocumentor/type-resolver/src',
92 0 => __DIR__ . '/..' . '/symfony/polyfill-ctype',
[all …]
/plugin/bez/tpl/
H A Dtasks.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
3 <?php if (!$tpl->get('no_filters', false)): ?>
5 <?php if ($tpl->factory('task')->permission() >= BEZ_TABLE_PERMISSION_INSERT): ?>
6 …<a href="<?php echo $tpl->url('task_form') ?>" class="bez_start_button" id="bez_report_task_button…
7 <?php echo $tpl->getLang('add_task') ?>
9 <?php endif ?>
14 <form action="<?php echo $tpl->url('tasks') ?>" method="POST">
17 <label><?php echo $tpl->getLang('reporter') ?>:
19 <option <?php if ($tpl->value('original_poster') == '-all') echo 'selected' ?>
20 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
[all …]
H A Dthreads.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
3 <?php if (!$tpl->get('no_filters', false)): ?>
5 <?php if ($tpl->factory('thread')->permission() >= BEZ_TABLE_PERMISSION_INSERT): ?>
6 …<a href="<?php echo $tpl->url('thread_report', 'type', $tpl->action() == 'projects' ? 'project' : …
7 <?php echo $tpl->getLang('report_' . $tpl->action()) ?>
9 <?php endif ?>
14 <form action="<?php echo $tpl->url($tpl->action()) ?>" method="post">
16 <label><?php echo $tpl->getLang('reporter') ?>:
18 <option <?php if ($tpl->value('original_poster') == '-all') echo 'selected' ?>
19 value="-all">--- <?php echo $tpl->getLang('all') ?> ---</option>
[all …]
H A D8d.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <?php $D = 2 ?>
3 <?php if (count($tpl->get('8d_tasks')['correction']) > 0) $D++ ?>
4 <?php if (count($tpl->get('causes')) > 0) $D++ ?>
5 <?php if (count($tpl->get('8d_tasks')['corrective']) > 0) $D++ ?>
6 <?php $corrective_done = array_filter($tpl->get('8d_tasks')['corrective'], function ($task) {
7 return $task->state == 'done';
9 <?php if (count($corrective_done) > 0) $D++ ?>
10 <?php if (count($tpl->get('8d_tasks')['preventive']) > 0) $D++ ?>
11 <?php if ($tpl->get('thread')->state == 'closed' || $tpl->get('thread')->state == 'rejected') $D++ …
[all …]
H A Dtask.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <?php if ($tpl->get('task')->thread_id != '' && $tpl->get('task')->thread->acl_of('id') >= BEZ_PERM…
4 <?php
5 if ($tpl->get('task')->thread->state == 'opened') {
6 echo 'priority_' . $tpl->get('task')->thread->priority;
10 <strong><?php echo $tpl->getLang('issue') ?>:</strong>
11 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('task')->thread->id) ?>">
12 #<?php echo $tpl->get('task')->thread->id ?>
15 <?php if ($tpl->get('task')->thread->type == 'project'): ?>
16 <?php echo $tpl->getLang('project') ?>
[all …]
H A Dtask_box.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
3 <div id="z<?php echo $tpl->get('task')->id ?>"
5 <?php
6 if($tpl->get('task')->state == 'opened') {
7 echo 'priority_' . $tpl->get('task')->priority;
13 <strong><?php echo $tpl->getLang('open') ?>:</strong>
14 <?php echo $tpl->date($tpl->get('task')->create_date) ?>
17 <?php if ($tpl->get('task')->state != 'opened'): ?>
20 <strong><?php echo $tpl->getLang('task_' . $tpl->get('task')->state) ?>:</strong>
21 <?php echo $tpl->date($tpl->get('task')->close_date) ?>
[all …]
H A Dthread.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <?php include "thread_box.php" ?>
6 …<?php if ($tpl->param('action') == '' && $tpl->get('thread')->user_is_coordinator() && $tpl->get('…
7 <div class="bez_second_lv_buttons" style="margin-top: 10px">
8 …<a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', 'task_add') ?>#z_…
9 …pan class="bez_awesome">&#xf0fe;</span>&nbsp;&nbsp;<?php echo $tpl->getLang('correction_add' . $tp…
12 <?php endif ?>
14 <?php foreach ($tpl->get('timeline') as $entity): ?>
15 <?php if ($entity->get_table_name() == 'thread_comment'): ?>
16 <?php $tpl->set('thread_comment', $entity) ?>
[all …]
H A Dthread_box.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <div data-type="<?php echo $tpl->get('thread')->type ?>"
4 <?php
5 if ($tpl->get('thread')->state == 'opened') {
6 echo 'priority_' . $tpl->get('thread')->priority;
12 <a href="<?php echo $tpl->url('thread', 'id', $tpl->get('thread')->id) ?>">
13 #<?php echo $tpl->get('thread')->id ?>
16 <?php if ($tpl->get('thread')->type == 'project'): ?>
17 <?php echo $tpl->getLang('project') ?>
18 <?php elseif (!empty($tpl->get('thread')->label_name)): ?>
[all …]
H A Dtask_form.php1 <?php
3 if ($tpl->action() == 'thread') {
4 …$url = $tpl->url('thread', 'id', $tpl->get('thread')->id, 'action', $tpl->param('action', 'add'), …
5 $id = 'bez:thread' . $tpl->get('thread')->id;
6 } elseif ($tpl->action() == 'task_form') {
7 … $url = $tpl->url('task_form', 'action', $tpl->param('action', 'add'), 'tid', $tpl->param('tid'));
10 $url = $tpl->url('task', 'action', $tpl->param('action', 'add'), 'tid', $tpl->param('tid'));
16 action="<?php echo $url ?>" method="POST">
17 <input type="hidden" name="id" value="<?php echo $id ?>">
20 <?php if ($tpl->param('tid') != ''): ?>
[all …]
H A Dreport.php1 <h1><?php echo $tpl->getLang('report') ?></h1>
4 <form action="<?php echo $tpl->url('report') ?>" method="post">
6 …<label><?php echo $tpl->getLang('report from') ?>: <input name="from" value="<?php echo $tpl->valu…
7 …<label><?php echo $tpl->getLang('report to') ?>: <input name="to" value="<?php echo $tpl->value('t…
9 <button><?php echo $tpl->getLang('show') ?></button>
14 <h2><?php echo $tpl->getLang('issues') ?></h2>
18 <th><?php echo $tpl->getLang('type') ?></th>
19 <th><?php echo ucfirst($tpl->getLang('proposal')) ?></th>
20 <th><?php echo ucfirst($tpl->getLang('open')) ?></th>
21 <th><?php echo ucfirst($tpl->getLang('report threads done')) ?></th>
[all …]
H A Dcommcause_box.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
2 <a id="k<?php echo $tpl->get('thread_comment')->id ?>"></a>
4 <?php echo $tpl->get('thread_comment')->type == 'comment' ? 'bez_type_0' : 'bez_cause' ?>
5 <?php
6 if ($tpl->get('thread_comment')->author == $tpl->current_user()) {
11 <img src="<?php echo DOKU_URL ?>lib/plugins/bez/images/avatar_default.png" />
14 <span class="bez_arrow-tip-container ">
15 <span class="bez_arrow-tip ">
16 <span class="bez_arrow-tip-grad"></span>
21 …<a href="#k<?php echo $tpl->get('thread_comment')->id ?>">#k<?php echo $tpl->get('thread_comment')
[all …]
H A Dthread_report.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
4 <?php if ($tpl->param('id') != ''): ?>
5 <?php $url = $tpl->url('thread_report', 'action', 'update', 'id', $tpl->param('id')) ?>
6 <?php else: ?>
7 <?php $url = $tpl->url('thread_report', 'action', 'add') ?>
8 <?php endif ?>
10 <?php if ($tpl->param('id') != ''): ?>
11 <?php $type = $tpl->get('thread')->type ?>
12 <?php else: ?>
13 <?php $type = $tpl->param('type') ?>
[all …]
H A Dstart.php1 <?php /* @var \dokuwiki\plugin\bez\meta\Tpl $tpl */ ?>
3 <?php if ($tpl->factory('thread')->permission() >= BEZ_TABLE_PERMISSION_INSERT): ?>
4 …<a href="<?php echo $tpl->url('thread_report', 'type', 'issue') ?>" class="bez_start_button" id="b…
5 <?php echo $tpl->getLang('report_threads') ?>
7 <?php endif ?>
8 <?php if ($tpl->factory('thread')->permission() >= BEZ_TABLE_PERMISSION_INSERT): ?>
9 …<a href="<?php echo $tpl->url('thread_report', 'type', 'project') ?>" class="bez_start_button" id=…
10 <?php echo $tpl->getLang('report_projects') ?>
12 <?php endif ?>
14 <?php if ($tpl->factory('task')->permission() >= BEZ_TABLE_PERMISSION_INSERT): ?>
[all …]
/plugin/dw2pdf/
H A Ddeleted.files5 DokuImageProcessorDecorator.class.php
6 _test/DokuImageProcessor.test.php
7 _test/action_pagenamesort.test.php
8 _test/renderer_dw2pdf.test.php
9 _test/syntax_exportlink.test.php
10 _test/test_syntax_exportlink.php
15 mpdf/Copia di mpdf.php
19 mpdf/classes/barcode.php
20 mpdf/classes/bmp.php
21 mpdf/classes/cssmgr.php
[all …]
/plugin/aichat/vendor/vanderlee/php-sentence/doc/
H A Dsource-class-SentenceTest.html4 <meta charset="utf-8">
7 <title>File tests/SentenceTest.php | phpSentence</title>
27 <li><a href="class-Sentence.html">Sentence</a></li>
28 <li><a href="class-SentenceTest.html">SentenceTest</a></li>
37 <li><a href="function-Sentence_autoloader.html">Sentence_autoloader</a></li>
49 <input type="hidden" name="ie" value="UTF-8">
67 <pre><code><span id="1" class="l"><a href="#1"> 1: </a><span class="xlang">&lt;?php</span>
69 </span><span id="3" class="l"><a href="#3"> 3: </a><span class="php-comment">/**
70 …ass="l"><a href="#4"> 4: </a><span class="php-comment"> * Generated by PHPUnit_SkeletonGenerator …
71 </span></span><span id="5" class="l"><a href="#5"> 5: </a><span class="php-comment"> */</span>
[all …]
H A Dsource-class-Sentence.html4 <meta charset="utf-8">
7 <title>File classes/Sentence.php | phpSentence</title>
27 <li><a href="class-Sentence.html">Sentence</a></li>
28 <li><a href="class-SentenceTest.html">SentenceTest</a></li>
37 <li><a href="function-Sentence_autoloader.html">Sentence_autoloader</a></li>
49 <input type="hidden" name="ie" value="UTF-8">
67 <pre><code><span id="1" class="l"><a href="#1"> 1: </a><span class="xlang">&lt;?php</span>
69 </span><span id="3" class="l"><a href="#3"> 3: </a><span class="php-comment">/**
70 </span></span><span id="4" class="l"><a href="#4"> 4: </a><span class="php-comment"> * Segments se…
71 </span></span><span id="5" class="l"><a href="#5"> 5: </a><span class="php-comment"> * Clipping ma…
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/
DCHANGELOG.md3 - Added port in url for trace and logger messages
4 [#1126](https://github.com/elastic/elasticsearch-php/pull/1126)
7 - (DOCS) Added the HTTP meta data section
8 [#1143](https://github.com/elastic/elasticsearch-php/pull/1143)
9 - Added support for API Compatibility Header
10 [#1142](https://github.com/elastic/elasticsearch-php/pull/1142)
11 - (DOCS) Added Helpers section to PHP book
12 [#1129](https://github.com/elastic/elasticsearch-php/pull/1129)
13 - Added the API description in phpdoc section for each endpoint
14 …[9e05c81](https://github.com/elastic/elasticsearch-php/commit/9e05c8108b638b60cc676b6a4f4be97c7df9…
[all …]
/plugin/jplayer/vendor/composer/
Dautoload_classmap.php1 <?php
3 // autoload_classmap.php @generated by Composer
9 'AMFReader' => $vendorDir . '/james-heinrich/getid3/getid3/module.audio-video.flv.php',
10 'AMFStream' => $vendorDir . '/james-heinrich/getid3/getid3/module.audio-video.flv.php',
11 …SequenceParameterSetReader' => $vendorDir . '/james-heinrich/getid3/getid3/module.audio-video.flv.
12 'Image_XMP' => $vendorDir . '/james-heinrich/getid3/getid3/module.tag.xmp.php',
13 'getID3' => $vendorDir . '/james-heinrich/getid3/getid3/getid3.php',
14 'getID3_cached_dbm' => $vendorDir . '/james-heinrich/getid3/getid3/extension.cache.dbm.php',
15 'getID3_cached_mysql' => $vendorDir . '/james-heinrich/getid3/getid3/extension.cache.mysql.php',
16 … 'getID3_cached_mysqli' => $vendorDir . '/james-heinrich/getid3/getid3/extension.cache.mysqli.php',
[all …]
Dautoload_static.php1 <?php
3 // autoload_static.php @generated by Composer
10 …'ce89ac35a6c330c55f4710717db9ff78' => __DIR__ . '/..' . '/kriswallsmith/assetic/src/functions.php',
39 0 => __DIR__ . '/..' . '/robloach/component-installer/src',
52 'AMFReader' => __DIR__ . '/..' . '/james-heinrich/getid3/getid3/module.audio-video.flv.php',
53 'AMFStream' => __DIR__ . '/..' . '/james-heinrich/getid3/getid3/module.audio-video.flv.php',
54 …nceParameterSetReader' => __DIR__ . '/..' . '/james-heinrich/getid3/getid3/module.audio-video.flv.
55 'Image_XMP' => __DIR__ . '/..' . '/james-heinrich/getid3/getid3/module.tag.xmp.php',
56 'getID3' => __DIR__ . '/..' . '/james-heinrich/getid3/getid3/getid3.php',
57 … 'getID3_cached_dbm' => __DIR__ . '/..' . '/james-heinrich/getid3/getid3/extension.cache.dbm.php',
[all …]
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/tests/tests/
DFilterTest.php1 <?php
3 * This file is part of the php-code-coverage package.
27 $this->filter = unserialize('O:37:"SebastianBergmann\CodeCoverage\Filter":0:{}');
29 $this->files = [
30 TEST_FILES_PATH . 'BankAccount.php',
31 TEST_FILES_PATH . 'BankAccountTest.php',
32 TEST_FILES_PATH . 'CoverageClassExtendedTest.php',
33 TEST_FILES_PATH . 'CoverageClassTest.php',
34 TEST_FILES_PATH . 'CoverageFunctionParenthesesTest.php',
35 TEST_FILES_PATH . 'CoverageFunctionParenthesesWhitespaceTest.php',
[all …]
/plugin/elasticsearch/vendor/elasticsearch/elasticsearch/docs/
Drelease-notes.asciidoc1 [[release-notes]]
4 * <<rn-7-15-0>>
5 * <<rn-7-14-0>>
6 * <<rn-7-13-1>>
7 * <<rn-7-13-0>>
8 * <<rn-7-12-0>>
9 * <<rn-7-11-0>>
10 * <<rn-7-10-0>>
11 * <<rn-7-9-1>>
12 * <<rn-7-9-0>>
[all …]
/plugin/html2pdf/html2pdf/html2ps/
Dpipeline.class.php1 <?php
3 require_once(HTML2PS_DIR.'utils_array.php');
4 require_once(HTML2PS_DIR.'utils_graphic.php');
5 require_once(HTML2PS_DIR.'utils_url.php');
6 require_once(HTML2PS_DIR.'utils_text.php');
7 require_once(HTML2PS_DIR.'utils_units.php');
8 require_once(HTML2PS_DIR.'utils_number.php');
10 require_once(HTML2PS_DIR.'value.color.php');
12 require_once(HTML2PS_DIR.'config.parse.php');
14 require_once(HTML2PS_DIR.'flow_context.class.inc.php');
[all …]
/plugin/upgrade/
H A Ddeleted.files5 HTTPClient.php
6 VerboseTarLib.class.php
7 _test/general.test.php
11 lang/de-informal/safemode.txt
31 lang/zh-tw/safemode.txt
33 vendor/autoload.php
34 vendor/composer/ClassLoader.php
35 vendor/composer/InstalledVersions.php
37 vendor/composer/autoload_classmap.php
38 vendor/composer/autoload_namespaces.php
[all …]
/plugin/findologicxmlexport/vendor/symfony/yaml/Tests/Fixtures/
DescapedCharacters.yml4 php: |
6 ---
10 php: |
12 ---
16 php: |
18 ---
22 php: |
24 ---
28 php: |
30 ---
[all …]

12345678910>>...56