• 이미지
    2024-02-27
    /** * Update or create session information */ function setSessionInfo() { // If your information came through the current session information to extract information from the users $member_info = Rhymix\Framework\Session::getMemberInfo(true); if (!$member_info->member_srl) { return; } // Information stored in the session login user // 세션 로그인 사... 더보기
  • 이미지
    2024-02-25
    /** * User-set variables (Context::get, Context::set) * * 사용자가 설정한 변수들 (Context::get, Context::set을 통해 설정) * * 이 변수는 사용자가 설정한 변수들을 저장하는데 사용됩니다. 이러한 변수들은 Context::set과 Context::get 메소드를 * 통해 설정되고 가져올 수 있습니다. * * @var object|null */ private static $_user_vars = NULL; /** * Singleton ins... 더보기