I need a lightweight custom module—call it “custom_menu” —built for Drupal 11. When enabled it must add a single menu link to the “User account menu”. In the admin UI the link should appear with the title “Dynamic useritem”, while on the front-end the label and target URL are chosen by a hard-coded if/else you stub out as if (true) for now. • If the condition is true, show “Option A” that points to “Link A”. • Otherwise show “Option B” that points to “Link B”. Feel free to use placeholder text for the two labels and URLs; I’ll swap them later. Make sure the link strings are run through Drupal’s t() so they remain translatable. Acceptance criteria – Module folder named custom_menu, containing .info.yml and any other required files. – Installs cleanly on a fresh Drupal 11 site with no extra dependencies. – Adds the link to the “User account menu” immediately on install; removing it on uninstall is a plus. – Front-end switch between Option A and Option B works as described. Please deliver the module as a zip (or Git repo link) that I can drop into /web/modules/custom and enable.