Labdoo / Labdoo-3.0

Labdoo 3.0
GNU General Public License v3.0
0 stars 4 forks source link

Correct approach to safe PNG Files #35

Closed jrosgiralt closed 1 year ago

jrosgiralt commented 1 year ago

Hi @greggmarshall,

In Drupal 7, i used to save the files in the folder “ /profiles/labdoo/files/pictures/“. For instance:

/profiles/labdoo/files/pictures/photo-album-icon.png

Example: https://github.com/Labdoo/Labdoo-2.0/blob/b64670d6aa44ced52286550903e1dc48d7b0fc13/modules/custom/labdoo_lib/labdoo_lib.module#L4831

What is the recommended way to store PNG files and similar (e.g., image files for icons, etc.) in Drupl 9? Thanks.

greggmarshall commented 1 year ago

I would put those files in the theme, in an images/ directory in the bootstrap_labdoo custom theme.

jrosgiralt commented 1 year ago

Thanks Gregg, I followed your advice.