phpDocumentor phpIcqBot
[ class tree: phpIcqBot ] [ index: phpIcqBot ] [ all elements ]

Source for file store.class.php

Documentation is available at store.class.php

  1. <?php
  2. abstract class IcqBot_Store
  3. {
  4.  
  5.     /**
  6.      * Loggind class
  7.      *
  8.      * @var IcqBot_Logs 
  9.      */
  10.     protected $logs;
  11.     
  12.     public function __construct(IcqBot_Logs $logs)
  13.     {
  14.         $this->logs = $logs;
  15.     }
  16.     
  17.     abstract public function setData(IcqBot_Module $module$key$value false);
  18.     abstract public function getData(IcqBot_Module $module$key);
  19.     abstract public function clearData(IcqBot_Module $module);
  20.     abstract public function getAllData(IcqBot_Module $module);
  21. }

Documentation generated on Mon, 24 Dec 2007 09:34:34 +0500 by phpDocumentor 1.4.0