Skip to content
Snippets Groups Projects
Commit c58ee806 authored by Kevin von Spiczak's avatar Kevin von Spiczak
Browse files

[TASK] merge origin/master

parents bf329c12 c12be331
No related branches found
No related tags found
1 merge request!27[FEATURE] save filters in session
......@@ -6,21 +6,25 @@
"license": [
"GPL-2.0-or-later"
],
"version": "4.0.11",
"version": "4.3.5",
"support": {
"issues": "https://gitlab.sgalinski.de/typo3/sg_jobs"
},
"require": {
"typo3/cms-core": "^9.5.2 || ^10.4.0",
"sgalinski/sg-mail": ">=6.0.0",
"sgalinski/sg-seo": ">=4.0.0"
},
"require-dev": {
"roave/security-advisories": "dev-master"
"sgalinski/sg-mail": ">=6.0.0"
},
"suggest": {
"sgalinski/sg-seo": ">=4.0.0"
},
"replace": {
"sgalinski/sg_jobs": "self.version"
},
"extra": {
"typo3/cms": {
"extension-key": "sg_jobs"
}
},
"autoload": {
"psr-4": {
"SGalinski\\SgJobs\\": "Classes/"
......
......@@ -4,7 +4,7 @@ $EM_CONF['sg_jobs'] = [
'title' => 'Jobs',
'description' => 'Manage and display your Job offers.',
'category' => 'plugin',
'version' => '4.0.11',
'version' => '4.3.5',
'state' => 'stable',
'uploadfolder' => FALSE,
'createDirs' => '',
......@@ -18,9 +18,7 @@ $EM_CONF['sg_jobs'] = [
[
'typo3' => '9.5.0-10.4.99',
'php' => '7.3.0-7.4.99',
'project_base' => '7.0.0',
'sg_mail' => '6.0.0',
'sg_seo' => '4.0.0'
'sg_mail' => '6.0.0'
],
'conflicts' =>
[
......
......@@ -33,7 +33,7 @@ call_user_func(
'SGalinski.sg_jobs',
'Joblist',
[
// Cacheable actions
// Available actions
'Joblist' => 'index'
],
[
......@@ -45,7 +45,7 @@ call_user_func(
'SGalinski.sg_jobs',
'JobApplication',
[
// Cacheable actions
// Available actions
'Joblist' => 'applyForm, apply'
],
[
......@@ -57,7 +57,7 @@ call_user_func(
'SGalinski.sg_jobs',
'JobTeaser',
[
// Cacheable actions
// Available actions
'JobTeaser' => 'index'
],
[
......@@ -65,12 +65,6 @@ call_user_func(
'JobTeaser' => ''
]
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'SGalinski.sg_jobs',
'PageBrowser',
['PageBrowser' => 'index',],
['PageBrowser' => '',]
);
// Backend preview for plugins
$GLOBALS['TYPO3_CONF_VARS']['SC_OPTIONS']['cms/layout/class.tx_cms_layout.php']['tt_content_drawItem']['sg_jobs']
= \SGalinski\SgJobs\Hooks\PageLayoutView\PluginRenderer::class;
......
......@@ -7,6 +7,7 @@ CREATE TABLE tx_sgjobs_domain_model_job (
qualification text DEFAULT '' NOT NULL,
alternative_start_date text DEFAULT '' NOT NULL,
start_date int(11) unsigned DEFAULT '0' NOT NULL,
location text DEFAULT '' NOT NULL,
company text DEFAULT '' NOT NULL,
telecommute_possible tinyint(4) unsigned DEFAULT '0' NOT NULL,
office_work_possible tinyint(4) unsigned DEFAULT '1' NOT NULL,
......@@ -23,7 +24,8 @@ CREATE TABLE tx_sgjobs_domain_model_job (
contact int(11) unsigned DEFAULT '0' NOT NULL,
featured_offer tinyint(4) unsigned DEFAULT '0' NOT NULL,
hide_apply_by_email tinyint(4) unsigned DEFAULT '0' NOT NULL,
hide_apply_by_postal tinyint(4) unsigned DEFAULT '0' NOT NULL
hide_apply_by_postal tinyint(4) unsigned DEFAULT '0' NOT NULL,
apply_external_link varchar(512) DEFAULT '' NOT NULL
);
CREATE TABLE tx_sgjobs_domain_model_department (
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment