Skip to content

Commit

Permalink
update pro version
Browse files Browse the repository at this point in the history
  • Loading branch information
Dale Nguyen committed Feb 25, 2024
1 parent 77ef32c commit f8cddc4
Show file tree
Hide file tree
Showing 3 changed files with 32 additions and 2 deletions.
18 changes: 18 additions & 0 deletions docs/hooks/pro-actions.rst
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
Integrate Firebase PRO Action Hooks
=============

Here is the list of action hooks that help to communicate with Firebase services.

After user successful logged in (v2.3.0)
----------------------------------

This action hook will trigger after user logged in successfully.


.. code-block:: php
function example_callback($firebase_user) {
// (maybe) do something with the $firebase_user.
}
add_action('firebase_after_user_successful_login', 'example_callback', 10, 1);
6 changes: 4 additions & 2 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Complete Guide to Firebase WordPress Integration
.. meta::
:description lang=en: Guide on how to integrate Firebase to WordPress.

Last updated: Jan 27, 2024
Last updated: Feb 25, 2024

.. raw:: html

Expand Down Expand Up @@ -49,7 +49,7 @@ If you are interested in the development progress, please check the `Road map <h
Products
-----------

- `Integrate Firebase PRO <https://techcater.com/>`_ - `v3.29.0`
- `Integrate Firebase PRO <https://techcater.com/>`_ - `v3.34.0`
- `Firebase WordPress Functions <https://firebase-wordpress-docs.readthedocs.io/en/latest/intro/cloud-functions-deployment.html>`_ - `v1.8.0` (bundle with PRO plugin)
- `Integrate Firebase Woocommerce <https://firebase-wordpress-docs.readthedocs.io/en/latest/extensions/woocommerce.html>`_ - `v2.16.0` (Extension)
- `Integrate Firebase Users <https://firebase-wordpress-docs.readthedocs.io/en/latest/extensions/firebase-users.html>`_ - `v1.3.2` (Extension)
Expand Down Expand Up @@ -184,6 +184,7 @@ Hooks
Actions & Filters that help to communicate with Firebase.

* :doc:`/hooks/pro-filters`
* :doc:`/hooks/pro-actions`
* :doc:`/hooks/woo-filters`

.. toctree::
Expand All @@ -192,6 +193,7 @@ Actions & Filters that help to communicate with Firebase.
:caption: Hooks

/hooks/pro-filters
/hooks/pro-actions
/hooks/woo-filters

Developers
Expand Down
10 changes: 10 additions & 0 deletions docs/misc/changelog.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,16 @@ CHANGELOG

All notable changes to this project will be documented in this file.

## v2.48.0 (2024-02-25)
----------------------------------

#### - :rocket: [New Feature]

- `PRO - v3.34.0`
- Update firebaseui_web to v6.1.0
- Add email sign in link shortcode
- add after successful signed in action hook

## v2.47.0 (2024-01-27)
----------------------------------

Expand Down

0 comments on commit f8cddc4

Please sign in to comment.