/** * Return tag names for this object * * @access public * @param void * @return array */ function getTagNames() { if (user_config_option('show_emails_as_conversations', true, logged_user()->getId())) { return Tags::getTagNamesByObjectIds(implode(',', $this->getConversationMailIds(true)), 'MailContents'); } else { return parent::getTagNames(); } }
/** * Return tag names for this object * * @access public * @param void * @return array */ function getTagNames() { //Seba ver si es lo mismo ya que siempre que un mail esta en un tag los otros tambien //if (user_config_option('show_emails_as_conversations',true,logged_user()->getId())){ if (user_config_option('show_emails_as_conversations')) { return Tags::getTagNamesByObjectIds(implode(',', $this->getConversationMailIds(true)), 'MailContents'); } else { return parent::getTagNames(); } }