module Phcscriptcdnpro class ApplicationController < ActionController::Base # Security Filters protect_from_forgery with: :exception # Load Helpers for PHCPress Widgets before_action :phcpress_recent_posts # Papertrail Whodunnit Username def user_for_paper_trail # Default is: current_user rescue nil current_user ? current_user.username : 'Public user' end # Grab Member Information def get_member_profile_info @members_profile_info = Member::Profile.find(params[:profile_id]) end # Load Helpers helper Phctitleseo::Engine.helpers helper Phcnotifi::Engine.helpers private # PHCPress Widget Helpers def phcpress_recent_posts @recent_posts = Phcpresspro::Articles::Post.all end end end