Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- <?php
- namespace Drupal\Component\Plugin;
- /**
- * @Annotation
- */
- class Translation {
- protected $translation;
- public function __construct($value) {
- $this->translation = t($value['value']);
- }
- public function getTranslation() {
- return $this->translation;
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment