Árvore de páginas

Versões comparadas

Chave

  • Esta linha foi adicionada.
  • Esta linha foi removida.
  • A formatação mudou.

...

Bloco de código
languagejava
themeMidnight
firstline1
titlePCTITOBSPCMNLOGO
linenumberstrue
collapsetrue
#Include "Protheus.ch"

/*/{Protheus.doc} User Function PCMNLOGO
    Utilizado para alterar o logo do menu no Portal do Cliente - FIN.

    @type user function
    @author Totvs
    @since 07/2024
    @see https://tdn.totvs.com/pages/editpage.action?pageId=853930568
 /*/
user Function PCMNLOGO()
	Local jCustom := PARAMIXB[1] as Json //Json com as propriedades esperadas.

	//Customizações de menu
	if jCustom:hasProperty('logo')
		jCustom['logo'] := '\logomenu\exemplo_logo.png'
	endif
	if jCustom:hasProperty('shortLogo')
		jCustom['shortLogo'] := '\logomenu\logo_short.png'
	endif
	if jCustom:hasProperty('logoText')
		jCustom['logoText'] := 'Totvs'
	endif

Return jCustom