Proyectos de Subversion LeadersLinked - Services

Rev

Rev 668 | Mostrar el archivo completo | | | Autoría | Ultima modificación | Ver Log |

Rev 668 Rev 672
Línea 462... Línea 462...
462
     * @param string $filename
462
     * @param string $filename
463
     * @return string
463
     * @return string
464
     */
464
     */
465
    public function getGroupImageForCodeAndFilename($code, $filename)
465
    public function getGroupImageForCodeAndFilename($code, $filename)
466
    {
466
    {
467
        return $this->_getProcessedImageOrCoverUrl(self::TYPE_COMPANY, $code, $filename, 'getFullPathImageGroupDefault');
467
        return $this->_getProcessedImageOrCoverUrl(self::TYPE_GROUP, $code, $filename, 'getFullPathImageGroupDefault');
468
    }
468
    }
Línea 469... Línea 469...
469
 
469
 
470
 
470
 
471
    /**
471
    /**
472
     *
472
     *
473
     * @param Group $group
473
     * @param Group $group
474
     * @return string
474
     * @return string
475
     */
475
     */
476
    public function getGroupCover($group)
476
    public function getGroupCover($group)
477
    {
477
    {
Línea 478... Línea 478...
478
        return $this->_getProcessedImageOrCoverUrl(self::TYPE_COMPANY, $group->uuid, $group->cover, 'getFullPathImageGroupCoverDefault');
478
        return $this->_getProcessedImageOrCoverUrl(self::TYPE_GROUP, $group->uuid, $group->cover, 'getFullPathImageGroupCoverDefault');
479
    }
479
    }
480
 
480