Lines Matching defs:extensions
42 'plugin repository to find the proper git repository. Multiple extensions can be given as parameters'
109 * Tries to install the given extensions using git clone
111 * @param array $extensions
113 public function cmdClone($extensions)
118 foreach ($extensions as $ext) {
132 if ($succeeded) $this->success('successfully cloned the following extensions: ' . implode(', ', $succeeded));
133 if ($errors) $this->error('failed to clone the following extensions: ' . implode(', ', $errors));
137 * Tries to install the given extensions using git clone with fallback to install
139 * @param array $extensions
141 public function cmdInstall($extensions)
146 foreach ($extensions as $ext) {
164 if ($succeeded) $this->success('successfully installed the following extensions: ' . implode(', ', $succeeded));
165 if ($errors) $this->error('failed to install the following extensions: ' . implode(', ', $errors));