search for: func_test

Displaying 2 results from an estimated 2 matches for "func_test".

2006 Mar 07
2
Determine which action, which controller is calling ?
Hello, Is it possible to determine wich :action , wich :controller is calling the function func_test in ApplicationController ? in class ApplicationController I have def func_test if ( calling from index ) return "1" end if ( calling from contact ) return "2" end end and in class SiteController def index @var = func_test end def contact...
2006 Mar 08
7
Function could determine the caller action ?
Is it possible to determine which action call the function ? In example, func_test in ApplicationController could determine which action from SiteController is calling her ? in class ApplicationController I have def func_test if ( calling from index ) return "1" end if ( calling from contact ) return "2" end end and in class Sit...