Source for file FrameTarget.php

Documentation is available at FrameTarget.php

  1. <?php
  2.  
  3. /**
  4.  * Special-case enum attribute definition that lazy loads allowed frame targets
  5.  */
  6. {
  7.     
  8.     public $valid_values = false// uninitialized value
  9.     protected $case_sensitive = false;
  10.     
  11.     public function __construct({}
  12.     
  13.     public function validate($string$config$context{
  14.         if ($this->valid_values === false$this->valid_values = $config->get('Attr''AllowedFrameTargets');
  15.         return parent::validate($string$config$context);
  16.     }
  17.     
  18. }

Documentation generated on Thu, 19 Jun 2008 18:49:15 -0400 by phpDocumentor 1.4.2