Varien_Convert_Adapter_Std Class Reference

Inheritance diagram for Varien_Convert_Adapter_Std:

Varien_Convert_Adapter_Abstract Varien_Convert_Container_Abstract Varien_Convert_Adapter_Interface Varien_Convert_Container_Interface

List of all members.

Public Member Functions

 load ()
 save ()


Detailed Description

Definition at line 35 of file Std.php.


Member Function Documentation

load (  ) 

Implements Varien_Convert_Adapter_Interface.

Definition at line 37 of file Std.php.

00038      {
00039          $data = '';
00040          $stdin = fopen('php://STDIN', 'r');
00041          while ($text = fread($stdin, 1024)) {
00042              $data .= $text;
00043          }
00044          $this->setData($data);
00045          return $this;
00046      }

save (  ) 

Implements Varien_Convert_Adapter_Interface.

Definition at line 48 of file Std.php.

00049      {
00050          echo $this->getData();
00051          return $this;
00052      }


The documentation for this class was generated from the following file:

Generated on Sat Jul 4 17:24:58 2009 for Magento by  doxygen 1.5.8