Changeset 2950

Show
Ignore:
Timestamp:
07/24/08 09:48:51 (1 month ago)
Author:
alexandrej
Message:

Implémentation des méthodes deleteById et deleteByPublicId

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/project/modules/devel/cms3/heading/classes/headingelementinformationservices.class.php

    r2949 r2950  
    5050    /** 
    5151     * Supression de l'élément 
     52     * @param unknown $pHeadingElementInformationId 
    5253     */ 
    5354    public function deleteById ($pHeadingElementInformationId){ 
     55        _dao('headingelementinformation')->delete ($pHeadingElementInformationId); 
    5456    } 
    5557     
     
    5961     */ 
    6062    public function deleteByPublicId ($pPublicId){ 
     63        $parameters = _daoSp ()->addCondition ('public_id_hei', '=', $pPublicId); 
     64        _dao('headingelementinformation')->deleteBy ($parameters); 
    6165    } 
    6266