0

Whats is the difference between

(($sPlugin = Phpfox_Plugin::get('blog.service_process__start')) ? eval($sPlugin) : false); 

and

{plugin call='blog.template_controller_add_hidden_form'}
the swine
  • 10,713
  • 7
  • 58
  • 100
sAs59
  • 562
  • 2
  • 7
  • 30

1 Answers1

1
(($sPlugin = Phpfox_Plugin::get('blog.service_process__start')) ? eval($sPlugin) : false); 

this syntax  used in class files (controller,block,service) 

and


{plugin call='blog.template_controller_add_hidden_form'}

this syntax used in template file (controller,block)
Ankit Agrawal
  • 6,034
  • 6
  • 25
  • 49