1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
<?php /** * WPSEO plugin file. * * @package WPSEO\Admin\Links */
/** * Represents installer for the link module. */ class WPSEO_Link_Installer {
/** * @var WPSEO_Installable[] */ protected $installables = array();
/** * Sets the installables. */ public function __construct() { $this->installables = array( new WPSEO_Link_Storage(), new WPSEO_Meta_Storage(), ); }
/** * Runs the installation of the link module. */ public function install() { foreach ( $this->get_installables() as $installable ) { $installable->install(); } }
/** * Adds a installable object to the installer. * * @param WPSEO_Installable $installable The installable object. */ public function add_installable( WPSEO_Installable $installable ) { $this->installables[] = $installable; }
/** * Returns the installable objects. * * @return WPSEO_Installable[] The installables to use. */ protected function get_installables() { return $this->installables; } }
|