<div dir="ltr"><div>Thanks for the feedback, Isaac.<br></div><div><br></div><div>I have a preference for using src, because if we analyze the files present in ./ as index.php, these are "public" files or entry points and should not have any type of logic, and serve only to initialize the application. ./templates and ./themes are for presentation only and should not have any type of system logic. For this reason I like to think of the src as the directory that contains all the system logic.<br></div><div><br></div><div>However, this would not be the case with phpMyAdmin because it is not 100% object oriented and for this reason, we would end up having libraries and src for a long time, which could cause confusion and would not help at all.</div><div><br></div><div>Thinking about it, I ended up changing my opinion and I think ./libraries/classes is the best option. And in the future when practically all of the logic is already inside this directory, we can think about restructure again, if necessary.<br></div><div class="gmail_extra"><br clear="all"><div><div class="gmail_signature" data-smartmail="gmail_signature"><div dir="ltr">Maurício Meneghini Fauth</div></div></div>
<br><div class="gmail_quote">On Thu, Jun 15, 2017 at 9:34 AM, Isaac Bennetch <span dir="ltr"><<a href="mailto:bennetch@gmail.com" target="_blank">bennetch@gmail.com</a>></span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><span class="">> On Jun 13, 2017, at 8:35 PM, Maurício Meneghini Fauth <<a href="mailto:mauriciofauth@gmail.com">mauriciofauth@gmail.com</a>> wrote:<br>
><br>
> Hello<br>
><br>
> Currently, classes do not have a single location in the directory structure. The class files are mixed with other kinds of files in the libraries directory, and the PMA namespace points to the root path which causes all classes to have a namespace that begins with PMA\libraries. This affects the performance of the autoloader.<br>
><br>
> One solution to solve this problem would be to move the classes to a new directory that contains only class files and create a new namespace that points to that directory.<br>
> The directory can have any name that describes it, like lib, classes, includes or src, but what I usually see in open source projects is the src directory.<br>
<br>
</span>I like this suggestion. It doesn't make a lot of sense to have class<br>
files scattered around the entire<br>
source tree, especially if it affects the autoloader.<br>
<br>
I have a preference to NOT use "src" because that doesn't make much<br>
sense to me personally. I<br>
tend to think of src as containing a project source code, which isn't<br>
very useful in our case since<br>
the whole codebase is source code. Most of your other suggestions<br>
would be fine by me, I think<br>
./classes or ./libraries/classes make the most sense to me, but I'm<br>
open to other ideas.<br>
<span class=""><br>
> Then we can use the namespace PhpMyAdmin, which is already used in SqlParser, in the src directory, and after all classes are moved to that directory, we remove the PMA namespace.<br>
<br>
</span>I think this is a good idea.<br>
<span class=""><br>
> I would like to hear your opinion on this subject.<br>
><br>
> Best regards<br>
> Maurício Meneghini Fauth<br>
</span>> ______________________________<wbr>_________________<br>
> Developers mailing list<br>
> <a href="mailto:Developers@phpmyadmin.net">Developers@phpmyadmin.net</a><br>
> <a href="https://lists.phpmyadmin.net/mailman/listinfo/developers" rel="noreferrer" target="_blank">https://lists.phpmyadmin.net/<wbr>mailman/listinfo/developers</a><br>
<br>
______________________________<wbr>_________________<br>
Developers mailing list<br>
<a href="mailto:Developers@phpmyadmin.net">Developers@phpmyadmin.net</a><br>
<a href="https://lists.phpmyadmin.net/mailman/listinfo/developers" rel="noreferrer" target="_blank">https://lists.phpmyadmin.net/<wbr>mailman/listinfo/developers</a><br>
</blockquote></div><br></div></div>