There is such a line in the PHP code:
cPAGETYPE=='portal'?define('cPAGEPATH','templates/portal/'.$kernel['settings'] 'template__portal'].'/'):define('cPAGEPATH','templates/admin/'.$kernel['settings'] 'template__admin'].'/');
Question: what happens here and how to read it? What does the sign "?" before the first define and ":" before the second define?
define('cPAGEPATH', cPAGETYPE=='portal'?$v1:$v2)
- Sh4dow