Listing 30.20. | |
| ROZDZIAŁ: | 30. Konwersja plików z danymi |
| TXT: | listing-30-20.txt |
public function przeliczArtykuly()
{
$ahas = $this->getArtykulHasAutorsJoinArtykul();
$this->setLiczbaartykulow(count($ahas));
$liczba_stron = 0;
foreach ($ahas as $aha) {
$liczba_stron += $aha->getArtykul()->getLiczbastron();
}
$this->setLiczbastron($liczba_stron);
$this->save();
}