Changeset 19093


Ignore:
Timestamp:
2010/11/06 22:18:59 (13 years ago)
Author:
miningbrownie
Message:
 
File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/camp/camp-2_5-E/data/class/SC_Response.php

    r19092 r19093  
    2929 
    3030    function response(){ 
    31          
     31 
    3232    } 
    33     function setContentLength; 
     33 
     34    function setContentLength(int $length){ 
     35 
     36    } 
     37 
    3438 
    3539    function setContentType(String $contentType){ 
     
    4448 
    4549    } 
    46   
     50 
    4751    function addDateHdeader(String $name, $date){ 
    48          
     52 
    4953    } 
    5054    function addHeader(String $name, $value){ 
    51       $this->header[$name] = $value;     
     55        $this->header[$name] = $value; 
    5256    } 
    53      
     57 
    5458    function containsHeader(String $name){ 
    5559        return isset($this->header[$name]); 
    5660    } 
    57      
     61 
    5862    function sendError(int $errorcode){ 
    59          
     63 
    6064    } 
    61      
     65 
    6266    function sendRedirect(String $location){ 
    63          
     67 
    6468    } 
    65        
     69 
    6670    function setHeader(Array $headers){ 
    6771        $this->header = $headers; 
    6872    } 
    69      
     73 
    7074    function setStatus(int $sc = 202){ 
    7175        $this->statuscode = $sc; 
Note: See TracChangeset for help on using the changeset viewer.