-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
27 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,6 @@ | ||
2019-03-09 Franz Holzinger <[email protected]> | ||
* compatibility for PHP 7.2 | ||
|
||
2019-02-20 Franz Holzinger <[email protected]> | ||
* change hook tx_double6 into JambageCom\Div2007\Hooks\Evaluation\Double6 | ||
* new feature: error.configuration to show misconfiguration errors in the Front End | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
/*************************************************************** | ||
* Copyright notice | ||
* | ||
* (c) 2006-2011 Franz Holzinger ([email protected]) | ||
* (c) 2006-2019 Franz Holzinger ([email protected]) | ||
* All rights reserved | ||
* | ||
* This script is part of the TYPO3 project. The TYPO3 project is | ||
|
@@ -40,19 +40,19 @@ | |
|
||
|
||
abstract class tx_ttproducts_catlist_view_base implements t3lib_Singleton { | ||
var $pibase; // reference to object of pibase | ||
protected $pibase; // reference to object of pibase | ||
public $pibaseClass; | ||
public $cObj; | ||
var $conf; | ||
var $config; | ||
var $pidListObj; // pid where to go | ||
var $subpartmarkerObj; // marker functions | ||
var $urlObj; // url functions | ||
var $htmlTagMain = ''; // main HTML tag | ||
var $htmlTagElement = ''; // HTML tag element | ||
var $htmlPartsMarkers = array('###ITEM_SINGLE_PRE_HTML###', '###ITEM_SINGLE_POST_HTML###'); | ||
var $tableConfArray = array(); | ||
var $viewConfArray; | ||
public $conf; | ||
public $config; | ||
public $pidListObj; // pid where to go | ||
public $subpartmarkerObj; // marker functions | ||
public $urlObj; // url functions | ||
public $htmlTagMain = ''; // main HTML tag | ||
public $htmlTagElement = ''; // HTML tag element | ||
public $htmlPartsMarkers = array('###ITEM_SINGLE_PRE_HTML###', '###ITEM_SINGLE_POST_HTML###'); | ||
public $tableConfArray = array(); | ||
public $viewConfArray = array; | ||
private $tMarkers; // all markers which are found in the template subpart for the whole view $t['listFrameWork'] | ||
|
||
|
||
|
@@ -301,6 +301,7 @@ protected function getPrintViewArrays ( | |
|
||
$functableArray = array($functablename); | ||
$tableConfArray = array(); | ||
$viewConfArray = array(); | ||
$searchVars = $pibaseObj->piVars[tx_ttproducts_model_control::getSearchboxVar()]; | ||
tx_ttproducts_model_control::getTableConfArrays( | ||
$pibaseObj->cObj, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters