I have a form that I am opening in a modal via a link.
I use this form to both add notes and also display them in a table (adding notes and displaying notes in table happens in same form).
In my form I have a ajax callback that I use to add notes, when the submit button is fired.
When my form is submitted, I would like to keep the modal open, but rebuild the table so that the changes are reflected (user can see the note they added in the table).
I have a drupal multisite (2 main sites that share the same code base example1.com and example2.com) then I have some legacy sites f.x my main site is example.com then legacy site is ex1.example.com they do not share the same user database table nor schema i.e. if you are logged into ex1.example.com you are not logged into example.com.
What I want to do is allow users to be able to log into my legacy site: ex1.example.com and have a link on that site that leads to example.com and STAY logged into both sites
We've added a field to the user (Program Id), and we're trying to filter a user view showing the users whose Program Id is the same as the logged in user. Is there any way to do this via the Views UI, or is this going to require programmatically creating a filter, and if the latter, how do I go about doing it?