/** * This function will return paginated result. Result is an array where first element is * array of returned object and second populated pagination object that can be used for * obtaining and rendering pagination data using various helpers. * * Items and pagination array vars are indexed with 0 for items and 1 for pagination * because you can't use associative indexing with list() construct * * @access public * @param array $arguments Query argumens (@see find()) Limit and offset are ignored! * @param integer $items_per_page Number of items per page * @param integer $current_page Current page number * @return array */ function paginate($arguments = null, $items_per_page = 10, $current_page = 1) { if (isset($this) && instance_of($this, 'CustomPropertyValues')) { return parent::paginate($arguments, $items_per_page, $current_page); } else { return CustomPropertyValues::instance()->paginate($arguments, $items_per_page, $current_page); } // if }
/** * Return manager instance * * @access protected * @param void * @return CustomPropertyValue */ function manager() { if (!$this->manager instanceof CustomPropertyValues) { $this->manager = CustomPropertyValues::instance(); } return $this->manager; }
/** * This method will run query in og_custom_properties table and * fetch user phone number where it is available * Added By aqureshi */ function getPhoneNumberCustomProperty($user_idss) { $cstm_users_table = CustomPropertyValues::instance()->getTableName(true); $sql = "SELECT id, object_id,custom_property_id , `value` FROM {$cstm_users_table} WHERE (`object_id` in ( {$user_idss} ) ) "; $rows = DB::executeAll($sql); if (is_array($rows)) { foreach ($rows as $row) { return $row['value']; } // foreach } // if }
/** * Return manager instance * * @access protected * @param void * @return CustomPropertyValue */ function manager() { if(!($this->manager instanceof CustomPropertyValues )) $this->manager = CustomPropertyValues::instance(); return $this->manager; } // manager