-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Enable plaintext transcripts for audio objects
- Loading branch information
Showing
3 changed files
with
126 additions
and
31 deletions.
There are no files selected for viewing
87 changes: 87 additions & 0 deletions
87
Classes/ViewHelpers/StructuredData/PlaintextViewHelper.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,87 @@ | ||
<?php | ||
|
||
/** | ||
* tollwerk | ||
* | ||
* @category Tollwerk | ||
* @package Tollwerk\TwBase | ||
* @subpackage Tollwerk\TwBase\ViewHelpers\StructuredData | ||
* @author Joschi Kuphal <[email protected]> / @jkphl | ||
* @copyright Copyright © 2019 Joschi Kuphal <[email protected]> / @jkphl | ||
* @license http://opensource.org/licenses/MIT The MIT License (MIT) | ||
*/ | ||
|
||
/*********************************************************************************** | ||
* The MIT License (MIT) | ||
* | ||
* Copyright © 2019 Joschi Kuphal <[email protected]> | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a copy of | ||
* this software and associated documentation files (the "Software"), to deal in | ||
* the Software without restriction, including without limitation the rights to | ||
* use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of | ||
* the Software, and to permit persons to whom the Software is furnished to do so, | ||
* subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in all | ||
* copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS | ||
* FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR | ||
* COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER | ||
* IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN | ||
* CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. | ||
***********************************************************************************/ | ||
|
||
namespace Tollwerk\TwBase\ViewHelpers\StructuredData; | ||
|
||
use Closure; | ||
use Soundasleep\Html2Text; | ||
use Soundasleep\Html2TextException; | ||
use TYPO3\CMS\Extbase\Object\Exception; | ||
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface; | ||
use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper; | ||
use TYPO3Fluid\Fluid\Core\ViewHelper\Traits\CompileWithRenderStatic; | ||
|
||
/** | ||
* Convert Markup to serializable plaintext | ||
* | ||
* @package Tollwerk\TwBase | ||
* @subpackage Tollwerk\TwBase\ViewHelpers | ||
*/ | ||
class PlaintextViewHelper extends AbstractViewHelper | ||
{ | ||
use CompileWithRenderStatic; | ||
|
||
/** | ||
* Create an ID reference | ||
* | ||
* @param array $arguments | ||
* @param Closure $renderChildrenClosure | ||
* @param RenderingContextInterface $renderingContext | ||
* | ||
* @return mixed | ||
* @throws Exception|Html2TextException | ||
*/ | ||
public static function renderStatic( | ||
array $arguments, | ||
Closure $renderChildrenClosure, | ||
RenderingContextInterface $renderingContext | ||
) { | ||
return Html2Text::convert($arguments['text'] ?? $renderChildrenClosure()); | ||
} | ||
|
||
/** | ||
* Initialize all arguments. You need to override this method and call | ||
* $this->registerArgument(...) inside this method, to register all your arguments. | ||
* | ||
* @return void | ||
* @api | ||
*/ | ||
public function initializeArguments() | ||
{ | ||
parent::initializeArguments(); | ||
$this->registerArgument('text', 'string', 'Text', false, null); | ||
} | ||
} |
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