【CakePHP 2.x】モデルのsave()で OR を使う

単なるメモ。

<?php
$result = $this->find(
    'all',
    array(
    	'conditions'=>array(
            'UntouchableList.product_id'=>$_product_id,
            'OR'=>array('UntouchableList.item'=>$_lists) //このようにORの条件配列を入れる
        )
    )
);