function getAssetLinked(&$PDOdb, $only_ids = false)
 {
     global $conf;
     if (!empty($conf->asset->enabled)) {
         $Tab = $TId = array();
         $TId = TAsset::get_element_element($this->getId(), 'TAssetOFLine', 'TAsset');
         if ($only_ids) {
             return $TId;
         }
         //pre($TId,true);
         foreach ($TId as $id) {
             $asset = new TAsset();
             if ($asset->load($PDOdb, $id)) {
                 $Tab[] = $asset;
             }
         }
         return $Tab;
     }
     return array();
 }