-
Notifications
You must be signed in to change notification settings - Fork 36
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Inject block into custom-fetchers. #EZP-25771
(cherry picked from commit c22b813)
- Loading branch information
1 parent
242d3af
commit fcfe5c7
Showing
2 changed files
with
37 additions
and
0 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
packages/ezflow_extension/ezextension/ezflow/classes/ezflowfetchparameters.php
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 |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<?php | ||
// | ||
// ## BEGIN COPYRIGHT, LICENSE AND WARRANTY NOTICE ## | ||
// SOFTWARE NAME: eZ Flow | ||
// SOFTWARE RELEASE: 1.1-0 | ||
// COPYRIGHT NOTICE: Copyright (C) 1999-2014 eZ Systems AS | ||
// SOFTWARE LICENSE: GNU General Public License v2.0 | ||
// NOTICE: > | ||
// This program is free software; you can redistribute it and/or | ||
// modify it under the terms of version 2.0 of the GNU General | ||
// Public License as published by the Free Software Foundation. | ||
// | ||
// This program is distributed in the hope that it will be useful, | ||
// but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
// GNU General Public License for more details. | ||
// | ||
// You should have received a copy of version 2.0 of the GNU General | ||
// Public License along with this program; if not, write to the Free | ||
// Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
// MA 02110-1301, USA. | ||
// | ||
// | ||
// ## END COPYRIGHT, LICENSE AND WARRANTY NOTICE ## | ||
// | ||
|
||
class eZFlowFetchParameters | ||
{ | ||
/** @var array */ | ||
public $block; | ||
|
||
public function __construct( array $block ) | ||
{ | ||
$this->block = $block; | ||
} | ||
} |
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