Sha256: 6d9165bc3f6d0a29173f02512528940ed502154ff0520258027380d2751c8d21

Contents?: true

Size: 1.22 KB

Versions: 9

Compression:

Stored size: 1.22 KB

Contents

module Phcscriptcdnpro
  class ApplicationController < ActionController::Base
  
    # Load Helpers for PHCPress Widgets
    before_action :phcpress_recent_posts
    
    # Security Filters
    protect_from_forgery with: :exception
    
    # Grab Member Information
    def get_member_profile_info  
      @members_profile_info = Member::Profile.find(params[:profile_id])
    end
    
    # AuthRocket User Helpers
    def require_user
      unless current_user
        params.permit!
        session[:last_url] = request.get? ? url_for(params) : url_for
        redirect_to new_login_url
      end
    end
    
    def current_user
      @_current_user ||= AuthRocket::Session.from_token(session[:ar_token]).try(:user)
    end
    helper_method :current_user
    
    def new_login_url
      ENV['AUTHROCKET_LOGIN_URL']
    end
    helper_method :new_login_url
    
    def membership_info
      AuthRocket::Membership.all(user_id: current_user.id).first
    end
    
    # Load Helpers
    helper Phctitleseo::Engine.helpers
    helper Phcnotifi::Engine.helpers
    helper Phcaccountspro::Engine.helpers
    
    # PHCPress Widget Helpers
    def phcpress_recent_posts
      @recent_posts = Phcpresspro::Articles::Post.all
    end
  
  end
end


Version data entries

9 entries across 9 versions & 1 rubygems

Version Path
phcscriptcdnpro-5.10.1 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.10.0 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.9.5 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.9.1 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.9.0 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.8.9 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.8.7 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.8.6 app/controllers/phcscriptcdnpro/application_controller.rb
phcscriptcdnpro-5.8.5 app/controllers/phcscriptcdnpro/application_controller.rb