Skip to content
Extraits de code Groupes Projets
DataTable.php 27 ko
Newer Older
  • Learn to ignore specific revisions
  • 			}
    			$this->addRow( new Piwik_DataTable_Row($cleanRow) );
    		}
    	}
    
    	/**
    	 * At destruction we try to free memory
    	 * But php doesn't give us much control on this
    	 */
    	public function __destruct()
    	{
    		unset($this->rows);
    	}
    	
    }