8.5. Unlink Vendor Source

./script/solar unlink-vendor VendorName

The unlink-vendor command deletes the standard symbolic links in a Solar system for a given vendor, without deleting the source files themselves.

8.5.1. Example

To unlink a vendor source from a Solar system, issue the following command:

$ ./script/solar unlink-vendor VendorName
Removing links for vendor 'VendorName' ...
    Removing 'script/vendor-name' ... done.
    Removing 'include/Fixture/VendorName' ... done.
    Removing 'include/Mock/VendorName' ... done.
    Removing 'include/Test/VendorName' ... done.
    Removing 'include/VendorName' ... done.
... done.
Remember to remove 'VendorName_App' from the ['Solar_Controller_Front']['classes'] element in your config file.
Remember to remove 'VendorName_Model' from the ['Solar_Sql_Model_Catalog']['classes'] element in your config file.
You will need to remove the 'docroot/public/VendorName' directory yourself, as it may contain copies of public assets (not links).
$
[Note] Note

The public assets for the vendor in the docroot/public/ are not deleted. This is because the public assets may be needed by other parts of the application. You will have to unlink or delete them yourself.



Local