1 2 3 4 5 6 7 | class UtilsComponent extends Object { function pdate( $id ) { $Picture = ClassRegistry::init( 'Picture' ); $tmp = $Picture ->read( 'modified' , $id ); return $tmp [ 'Picture' ][ 'modified' ]; } } |
1 2 3 4 5 6 7 8 9 | App::import( 'Component' , 'Utils' ); class UtilsHelper extends AppHelper { function __call( $methodName , $args ) { $utils = new UtilsComponent(); return call_user_func_array( array ( $utils , $methodName ), $args ); } //もちろんこのヘルパー内に他の関数を書いてもよい。 } |
コントローラで
1 2 | var $components = array ( 'Utils' ... その他のコンポーネント); var $helpers = array ( 'Utils' , ...その他のヘルパー); |
$this->Utils->共通コンポーネントの関数()
と呼び出すことで、コンポーネントの関数を呼び出すことができる。