# |
Apr 27th 2017, 20:29 |
siran |
yes |
# |
Apr 27th 2017, 20:29 |
Leonardo_0112 |
siran, did you try debug() the parameters from beforeFind method? |
# |
Apr 27th 2017, 20:28 |
holisticnetworking |
So, @btx. Anything? |
# |
Apr 27th 2017, 20:28 |
siran |
I don't know how to interact with a query from a beforeFind if I can't access/modify the $query |
# |
Apr 27th 2017, 20:28 |
siran |
Leonardo_0112: but apparently there ir none |
# |
Apr 27th 2017, 20:27 |
siran |
Leonardo_0112: yeah. I was wondering if there was a general getter/setter |
# |
Apr 27th 2017, 20:27 |
Leonardo_0112 |
siran, protected property or method can only be accessed by the class itself or some class that extends it |
# |
Apr 27th 2017, 20:24 |
siran |
it says `Cannot access protected property Cake\ORM\Query::$_parts` |
# |
Apr 27th 2017, 20:16 |
siran |
beforeFind has a $query parameter, i'd like to access the $query->_parts property and interact with it. but since its protected I apparently can't. Is there some workaround? |
# |
Apr 27th 2017, 20:15 |
siran |
how can I access a protected property of a $query object from a Behavior ? |
# |
Apr 27th 2017, 20:15 |
siran |
hi |
# |
Apr 27th 2017, 20:13 |
btx |
@burzum2 ah that’s exactly what I’m lookin for - thanks! |
# |
Apr 27th 2017, 20:12 |
Leonardo_0112 |
Is there a good ebook or tutorial that explains some tips on development? I mean, the use of docker, vagrant and others tools to make the development more easier. There are tools that I even don't know :( |
# |
Apr 27th 2017, 20:10 |
siran |
im using postgreslq as a windows service |
# |
Apr 27th 2017, 20:10 |
siran |
COLT_: sorry, i have no clue : ( |
# |
Apr 27th 2017, 20:10 |
COLT_ |
yea, well Im using MS SQL and its forcing me to use ODBC, cant use the Native one |
# |
Apr 27th 2017, 20:09 |
siran |
not using sqlserver, though |
# |
Apr 27th 2017, 20:09 |
siran |
COLT_: im on windows, and I don't know |
# |
Apr 27th 2017, 20:09 |
COLT_ |
this happens on CakePHP |
# |
Apr 27th 2017, 20:08 |
COLT_ |
My problem is, why does php_pdo_sqlsrv.dll keeps asking me for ODBC driver 13 |
# |
Apr 27th 2017, 20:08 |
COLT_ |
thanks btx |
# |
Apr 27th 2017, 20:02 |
burzum2 |
btx - you can't check it this way, it's not really a field and a collection of ids or records, basically an array. Just create custom rule and check that it is an array and that it is not empty |
# |
Apr 27th 2017, 19:50 |
btx |
@COLT_ if it’s an option I’d highly recommend something like vagrant or Docker instead of running on Windows. or a $5 droplet from Digital Ocean. Not what you asked for, just opinion. Also might help to post what your actual issue is |
# |
Apr 27th 2017, 19:47 |
COLT_ |
Im having problems with cakephp running on a windows server |
# |
Apr 27th 2017, 19:46 |
btx |
having a brain fart. how would I add validation to make sure (eg on `create` that a Product has been assigned a Category (hasMany)? I tried `$validator->requirePresence('categories')` but it’s just ignored |
# |
Apr 27th 2017, 19:46 |
COLT_ |
any of you guys use PHP on a windows machine? |
# |
Apr 27th 2017, 19:46 |
COLT_ |
hello guys |
# |
Apr 27th 2017, 19:43 |
btx |
@siran, it’s only protected so `$query->_parts` should be accessible |
# |
Apr 27th 2017, 19:35 |
siran |
i want to access _parts |
# |
Apr 27th 2017, 19:35 |
siran |
is there a getter? |
# |
Apr 27th 2017, 19:35 |
siran |
hey, how to access a protected property of Query object? |
# |
Apr 27th 2017, 19:24 |
aaronds |
exit |
# |
Apr 27th 2017, 19:24 |
btx |
ew |
# |
Apr 27th 2017, 19:24 |
COLT_ |
does any of you guys use PHP on a windows machine? |
# |
Apr 27th 2017, 19:23 |
siran |
aaronds: ok i already got it, thanks! |
# |
Apr 27th 2017, 19:23 |
aaronds |
@siran, of course, you're not extending Query, you'll be extending Table, which I just overlooked... |
# |
Apr 27th 2017, 19:23 |
holisticnetworking |
I should say @btx |
# |
Apr 27th 2017, 19:23 |
aaronds |
within your beforeFind, @siran, have a look at the implementation of \Cake\Database\Query, you'll see the protected $_parts variables holds a lot of info. |
# |
Apr 27th 2017, 19:22 |
holisticnetworking |
Well. Being a search, that's a long story. However the Paginator is creating the pagination links. |
# |
Apr 27th 2017, 19:22 |
siran |
aaronds: thanks. in what context is $this ? |
# |
Apr 27th 2017, 19:22 |
btx |
@holisticnetworking what does the code generating those URLs look like? |