EclipseGc

Untitled

Jul 11th, 2012
33
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
PHP 0.29 KB | None | 0 0
  1. <?php
  2.  
  3. namespace Drupal\Component\Plugin;
  4.  
  5. /**
  6.  * @Annotation
  7.  */
  8. class Translation {
  9.   protected $translation;
  10.  
  11.   public function __construct($value) {
  12.     $this->translation = t($value['value']);
  13.   }
  14.  
  15.   public function getTranslation() {
  16.     return $this->translation;
  17.   }
  18. }
Advertisement
Add Comment
Please, Sign In to add comment