├── Block ├── LoggedIn.php └── LoggedOut.php ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── Observer ├── AddHandles.php └── CheckHandles.php ├── README.md ├── composer.json ├── etc ├── frontend │ └── events.xml └── module.xml ├── registration.php └── view └── frontend ├── layout ├── customer_logged_in.xml └── customer_logged_out.xml └── templates ├── logged-in.phtml └── logged-out.phtml /Block/LoggedIn.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/Block/LoggedIn.php -------------------------------------------------------------------------------- /Block/LoggedOut.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/Block/LoggedOut.php -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/LICENSE -------------------------------------------------------------------------------- /Observer/AddHandles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/Observer/AddHandles.php -------------------------------------------------------------------------------- /Observer/CheckHandles.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/Observer/CheckHandles.php -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/README.md -------------------------------------------------------------------------------- /composer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/composer.json -------------------------------------------------------------------------------- /etc/frontend/events.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/etc/frontend/events.xml -------------------------------------------------------------------------------- /etc/module.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/etc/module.xml -------------------------------------------------------------------------------- /registration.php: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/registration.php -------------------------------------------------------------------------------- /view/frontend/layout/customer_logged_in.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/view/frontend/layout/customer_logged_in.xml -------------------------------------------------------------------------------- /view/frontend/layout/customer_logged_out.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/view/frontend/layout/customer_logged_out.xml -------------------------------------------------------------------------------- /view/frontend/templates/logged-in.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/view/frontend/templates/logged-in.phtml -------------------------------------------------------------------------------- /view/frontend/templates/logged-out.phtml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheFrankman/magento2-customhandles/HEAD/view/frontend/templates/logged-out.phtml --------------------------------------------------------------------------------