Recent Posts
- (02/24) Calling an Element from a Helper TAGS:CakephpWeb ProgrammingUsageTutorialExample
- (10/14) Forcing A Single Join in CakePHP PaginationTAGS:CakephpCakephp 13DatabaseErrorsHabtmMysqlMssqlWeb ProgrammingUsage
- (08/11) Inserting NOW() into MySQL Using CakePHPTAGS:CakephpDatabaseMysqlMssqlWeb ProgrammingUsage
- (08/07) Best PaginateCount for CakePHP - with Group By SupportTAGS:CakephpBehaviorsWeb ProgrammingUsageDatabaseExampleMysqlHabtmHack
- (04/03) CakePHP Error Messages Not Showing on FormTAGS:CakephpCakephp 13Web ProgrammingErrorsUsage
- (02/06) Sorting Paginated Results Using a Related Model Field in CakePHPTAGS:CakephpWeb ProgrammingUsageExample
- (11/02) Changing CakePHP's Model useTable on the FlyTAGS:CakephpWeb ProgrammingMysqlDatabaseExampleTutorial
- (10/18) The Funniest Error Message Ever - Thank You EclipseTAGS:EclipseWeb ProgrammingErrorsHumorWindowsUsageSoftwarePhpCakephp
Subscribe to my feed
MainelyDesign.com Blog
Getting the File Path to the Vendor Folder
Posted on 06/08/2009 at 04:47 pm by Kevin Wentworth
Viewed 1,905 times | 0 comments
I'm trying to use a library within my CakePHP application that needs a variable defined that contains the complete file path to the vendors folder. This can be solved one of two ways- modify the library (which I don't want to do) or use the Configure::corePaths() function in CakePHP.
Best Option - using Configure::corePaths()
This is a great function I had not used until today. If you call it with no parameters, you'll get all of the file paths that Cake will look in when "building" your application. I just needed the vendor folder path, so I did:
- <?php
- $vendorFilePath = Configure::corePaths('vendor');
- ?>
Another Option - inspired by CakePHP code
Modify the library I'm using to know where it is... this is how CakePHP tries to find the app folder and web root by default. I like the way the Cake developers think. This will also work (to get where the current file is saved):
- <?php
- ?>
Great little trick to determine CakePHP include paths. Scalable and automagic. Just the way I like it!
Cheers,
-Kevin Wentworth
Tags for Getting the File Path to the Vendor Folder
Comments for this Posting
No comments. Be the first to post a reply.
Sorry, comments are closed for this posting.
Please Email Kevin if you have any questions. Thanks!
