Advertisement
Guest User

Untitled

a guest
Apr 24th, 2014
32
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.28 KB | None | 0 0
  1. public function setData($key, $value=null)
  2. {
  3. if(is_array($key)) {
  4. $this->_data = $key;
  5. } else {
  6. $this->_data[$key] = $value;
  7. }
  8. return $this;
  9. }
  10.  
  11. Mage::log("Some message about which function you are in ".$someHelpfulVariable, null, 'mylogfile.log');
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement