Tue Jan 14, 2020 12:53 pm |
Replies: 0 |
Views: 2963 |
|
 |
Is there anyway to prevent the IDE from showing an error when there are php tags inside a javascript block. For example
<script>
var test = <?= $text; ?>;
</script>
or
...
|
Tue Jan 26, 2010 11:45 am |
Replies: 2 |
Views: 2461 |
|
 |
Towards the middle of last year I noticed a release about more Javascript support (code completion, etc) but I then noticed here in the forums it was pushed back to allow support for PHP 5.3. Is ther ...
|
Mon Mar 24, 2008 1:33 pm |
Replies: 11 |
Views: 6614 |
|
 |
Their support is top-notch. When evaluating their product, they responded quickly to my e-mail requests and help setting up the debugger. I wasn't even a paying customer, but took up at least 30 min ...
|
Wed Jan 23, 2008 12:36 pm |
Replies: 4 |
Views: 3957 |
|
 |
Ahh man.. you rock!! I hated having to open a file to see a var's properties
Thanks!
|
Wed Jan 23, 2008 12:16 pm |
Replies: 4 |
Views: 3957 |
|
 |
Sure you can. When you include a file, you get the scope of the parent (except for functions, they become global).
So inside $file, you can reach the class var $bar by using $this->bar.
W ...
|
Mon Jan 21, 2008 5:47 pm |
Replies: 4 |
Views: 3957 |
|
 |
I have created a template engine similar to the Zend Framework MVC (mostly the views), where I have a class similar to:
class foo
{
private $bar;
...
some __set(), etc ...
|
Sun Sep 09, 2007 6:33 am |
Replies: 2 |
Views: 4421 |
|
 |
Thanks! I figured it probabyl wasn't hardcoded in, but I could not find where to update it.
|
Sat Sep 08, 2007 10:03 am |
Replies: 2 |
Views: 4421 |
|
 |
Allow the right-click->Format with Polystyle on javascript files (.js).
|
Sun May 27, 2007 6:32 pm |
Replies: 2 |
Views: 4639 |
|
 |
I'm referring to the context menu popup when you right click in the editor. You have the option to select 'Collapse All Functions/Methods' and similar. There were no errors or anything, I just wishe ...
|
Fri May 25, 2007 11:17 am |
Replies: 2 |
Views: 4639 |
|
 |
I've noticed when using the code-folding from the popup context menu, if you select "collapse functions/methods", or just "collapse functions", they don't always work. It seems to ...
|
Thu May 17, 2007 11:56 am |
Replies: 0 |
Views: 4261 |
|
 |
One feature I like from Visual Studio is when you have a sytax style error that the editor picks up (the infamous red squiggly line), it placed it with the line number and problem in a listview in a t ...
|