예제 #1
0
파일: PWEURLTest.php 프로젝트: undera/pwe
 public function testGetProposedRedirect_None()
 {
     $obj = new PWEURL('/', $this->struct);
     $node1 =& $obj->getNode();
     $node1['!a']['test'] = 1;
     $node2 =& $obj->getNode();
     $this->assertEquals(1, $node2['!a']['test']);
 }
예제 #2
0
파일: PWECore.php 프로젝트: undera/pwe
 /**
  *
  * @return array
  * @throws HTTP5xxException
  */
 public function &getNode()
 {
     if ($this->URL == null) {
         throw new HTTP5xxException("No URL set to get node");
     }
     return $this->URL->getNode();
 }