This project allows you to manage your link exchanges with your website partners. The module creates a taxonomy to contribute your partners with some informations like Title, Image, Description, Link...
Partner Link also provide a page with the list of all your partners and also a block to display only those you want.

The module also uses a cron in order to check periodically that URLs are not broken.

There is only a Drupal 8 version.

Project link

https://www.drupal.org/project/partner_link

Git instructions

git clone --branch 8.x-1.x https://git.drupalcode.org/project/partner_link.git

PAReview checklist

https://pareview.sh/pareview/https-git.drupal.org-project-partner_link

Comments

phjou created an issue. See original summary.

phthlaap’s picture

Status: Needs review » Needs work

Please set default branch to 8.x-1.x

Git errors:
There is still a master branch, make sure to set the correct default branch: https://www.drupal.org/node/1659588 . Then remove the master branch, see also step 6 and 7 in https://www.drupal.org/node/1127732
phjou’s picture

Status: Needs work » Needs review

@phthlaap 8.x-1.x was already the default branch but I deleted the master branch :) Thanks for noticing that branch, it's fixed.

avpaderno’s picture

    $form_state->cleanValues();
    $values = $form_state->getValues();

Since cleanValues() return the object itself, that code can be reduced to a single line.

    $values = $form_state->cleanValues()->getValues();
    $config->set('check_broken_links', $values['check_broken_links']);
    $config->save();

Also those lines can be reduced to a single line.

    $config->set('check_broken_links', $values['check_broken_links'])->save();
avpaderno’s picture

Assigned: Unassigned » avpaderno
Status: Needs review » Fixed

Thank you for your contribution! I am going to update your account.

These are some recommended readings to help with excellent maintainership:

You can find more contributors chatting on the IRC #drupal-contribute channel. So, come hang out and stay involved.
Thank you, also, for your patience with the review process.
Anyone is welcome to participate in the review process. Please consider reviewing other projects that are pending review. I encourage you to learn more about that process and join the group of reviewers.

I thank all the dedicated reviewers as well.

Status: Fixed » Closed (fixed)

Automatically closed - issue fixed for 2 weeks with no activity.