Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
typo3
qfq
Commits
16c65e95
Commit
16c65e95
authored
Dec 17, 2018
by
Carsten Rose
Browse files
Refactor 'extension/qfq/qfq/...' to 'extension/Source/core/...'
parent
4309bed7
Pipeline
#1153
failed with stage
in 1 minute and 32 seconds
Changes
103
Pipelines
2
Hide whitespace changes
Inline
Side-by-side
extension/Classes/Controller/QfqController.php
View file @
16c65e95
...
...
@@ -7,11 +7,11 @@ namespace IMATHUZH\Qfq\Controller;
use
qfq
;
require_once
(
__DIR__
.
'/../../
qfq/qfq
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../../
qfq/qfq
/exceptions/UserFormException.php'
);
require_once
(
__DIR__
.
'/../../
qfq/qfq
/exceptions/UserReportException.php'
);
require_once
(
__DIR__
.
'/../../
qfq/qfq
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../../
qfq/qfq
/exceptions/DbException.php'
);
require_once
(
__DIR__
.
'/../../
Source/core
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../../
Source/core
/exceptions/UserFormException.php'
);
require_once
(
__DIR__
.
'/../../
Source/core
/exceptions/UserReportException.php'
);
require_once
(
__DIR__
.
'/../../
Source/core
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../../
Source/core
/exceptions/DbException.php'
);
/**
* Class QfqController
...
...
extension/
qfq
/api/delete.php
→
extension/
Source
/api/delete.php
View file @
16c65e95
...
...
@@ -10,10 +10,10 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../
qfq
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../
core
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../
core
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/CodeException.php'
);
/**
...
...
extension/
qfq
/api/dirty.php
→
extension/
Source
/api/dirty.php
View file @
16c65e95
...
...
@@ -11,8 +11,8 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/form/Dirty.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/form/Dirty.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
/**
...
...
extension/
qfq
/api/download.php
→
extension/
Source
/api/download.php
View file @
16c65e95
...
...
@@ -12,12 +12,12 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/report/Download.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/DownloadException.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/DbException.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/ErrorHandler.php'
);
require_once
(
__DIR__
.
'/../
core
/report/Download.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/DownloadException.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/DbException.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/ErrorHandler.php'
);
set_error_handler
(
"
\\
qfq
\\
ErrorHandler::exception_error_handler"
);
...
...
extension/
qfq
/api/dragAndDrop.php
→
extension/
Source
/api/dragAndDrop.php
View file @
16c65e95
...
...
@@ -10,9 +10,9 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../
core
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/QuickFormQuery.php'
);
//require_once(__DIR__ . '/../qfq/exceptions/UserFormException.php');
//require_once(__DIR__ . '/../qfq/exceptions/CodeException.php');
//require_once(__DIR__ . '/../qfq/exceptions/DbException.php');
...
...
extension/
qfq
/api/file.php
→
extension/
Source
/api/file.php
View file @
16c65e95
...
...
@@ -10,11 +10,11 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/File.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/UserFormException.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../
core
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/File.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/UserFormException.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/CodeException.php'
);
/**
* Process File Upload - immediately when the the user selects a file.
...
...
extension/
qfq
/api/load.php
→
extension/
Source
/api/load.php
View file @
16c65e95
...
...
@@ -10,9 +10,9 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../
core
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/QuickFormQuery.php'
);
/**
...
...
extension/
qfq
/api/print.php
→
extension/
Source
/api/print.php
View file @
16c65e95
...
...
@@ -13,7 +13,7 @@ use qfq;
//require_once(__DIR__ . '/../qfq/store/Config.php');
//require_once(__DIR__ . '/../qfq/Constants.php');
require_once
(
__DIR__
.
'/../
qfq
/report/Html2Pdf.php'
);
require_once
(
__DIR__
.
'/../
core
/report/Html2Pdf.php'
);
//require_once(__DIR__ . '/../qfq/helper/KeyValueStringParser.php');
/**
...
...
extension/
qfq
/api/save.php
→
extension/
Source
/api/save.php
View file @
16c65e95
...
...
@@ -10,12 +10,12 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../
qfq
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/UserFormException.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../
qfq
/exceptions/DbException.php'
);
require_once
(
__DIR__
.
'/../
core
/QuickFormQuery.php'
);
require_once
(
__DIR__
.
'/../
core
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/UserFormException.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/CodeException.php'
);
require_once
(
__DIR__
.
'/../
core
/exceptions/DbException.php'
);
/**
...
...
extension/
qfq
/api/typeahead.php
→
extension/
Source
/api/typeahead.php
View file @
16c65e95
...
...
@@ -11,8 +11,8 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/form/TypeAhead.php'
);
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/form/TypeAhead.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
/**
...
...
extension/
qfq/qfq
/AbstractBuildForm.php
→
extension/
Source/core
/AbstractBuildForm.php
View file @
16c65e95
File moved
extension/
qfq/qfq
/BodytextParser.php
→
extension/
Source/core
/BodytextParser.php
View file @
16c65e95
File moved
extension/
qfq/qfq
/BuildFormBootstrap.php
→
extension/
Source/core
/BuildFormBootstrap.php
View file @
16c65e95
File moved
extension/
qfq/qfq
/BuildFormPlain.php
→
extension/
Source/core
/BuildFormPlain.php
View file @
16c65e95
...
...
@@ -10,8 +10,8 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/AbstractBuildForm.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/AbstractBuildForm.php'
);
/**
* Class BuildFormPlain
...
...
extension/
qfq/qfq
/BuildFormTable.php
→
extension/
Source/core
/BuildFormTable.php
View file @
16c65e95
...
...
@@ -10,8 +10,8 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/Constants.php'
);
require_once
(
__DIR__
.
'/../
qfq
/AbstractBuildForm.php'
);
require_once
(
__DIR__
.
'/../
core
/Constants.php'
);
require_once
(
__DIR__
.
'/../
core
/AbstractBuildForm.php'
);
/**
* Class BuildFormTable
...
...
extension/
qfq/qfq
/Constants.php
→
extension/
Source/core
/Constants.php
View file @
16c65e95
File moved
extension/
qfq/qfq
/Delete.php
→
extension/
Source/core
/Delete.php
View file @
16c65e95
File moved
extension/
qfq/qfq
/Evaluate.php
→
extension/
Source/core
/Evaluate.php
View file @
16c65e95
...
...
@@ -10,8 +10,8 @@ namespace qfq;
use
qfq
;
require_once
(
__DIR__
.
'/../
qfq
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
qfq
/database/Database.php'
);
require_once
(
__DIR__
.
'/../
core
/store/Store.php'
);
require_once
(
__DIR__
.
'/../
core
/database/Database.php'
);
require_once
(
__DIR__
.
'/helper/Support.php'
);
require_once
(
__DIR__
.
'/helper/OnString.php'
);
require_once
(
__DIR__
.
'/report/Link.php'
);
...
...
extension/
qfq/qfq
/File.php
→
extension/
Source/core
/File.php
View file @
16c65e95
File moved
extension/
qfq/qfq
/QuickFormQuery.php
→
extension/
Source/core
/QuickFormQuery.php
View file @
16c65e95
File moved
Prev
1
2
3
4
5
6
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new 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