Forum Activity for @sbhadauria

sbhadauria
@sbhadauria
11/07/15 02:12:43PM
129 posts

Add Panel to Dashboard


Jamroom Developers

I have created a new panel for dashboard but it is not displaying.

Code:

jrCore_register_module_feature('jrCore', 'dashboard_panel', 'djMix', 'today licenses', 'djMix_dashboard_panels');


function djMix_dashboard_panels($panel)
{
$out = array(
'title' => 10
);
return ($out) ? $out : false;
}


Is I am doing anything wrong?

updated by @sbhadauria: 02/14/16 01:56:49AM
sbhadauria
@sbhadauria
09/25/15 08:00:54AM
129 posts

How to add cover image in mp3 files


Jamroom Developers

Thanks for your response.

I am using below mentioned code but failed:

$_tags['APIC'][0]['data'] = 'image data';
$_tags['APIC'][0]['mime'] = 'image/jpeg';
$_tags['APIC'][0]['description'] = "description";
$_tags['APIC'][0]['picturetypeid'] = "item_id";

// Add Tags
$id3 = jrCore_check_id3_install();
$cmd = $id3;
foreach ($_tags as $tag => $txt) {
if (function_exists('utf8_encode')) {
$cmd .= " --{$tag} \"". utf8_encode($txt) ."\"";
}
else {
$cmd .= " --{$tag} \"". jrCore_entity_string($txt) ."\"";
}
}
ob_start();
system("{$cmd} {$input_file} >/dev/null 2>{$tmp}", $ret);
ob_end_clean();
updated by @sbhadauria: 09/25/15 08:02:33AM
sbhadauria
@sbhadauria
09/25/15 02:31:12AM
129 posts

How to add cover image in mp3 files


Jamroom Developers

I want to add cover image in mp3 files. please help.
updated by @sbhadauria: 10/29/15 06:34:13PM
sbhadauria
@sbhadauria
07/28/15 01:15:15PM
129 posts

search blank value in datastore


Jamroom Developers

I have a license module and I want to get items from license module if end date is blank.

Below mentioned code is not working:
$_l = array(
'search' => array(
"license_end_date = ''"
),
);
$_rt = jrCore_db_search_items('xxLicense', $_l);

Please suggest?
updated by @sbhadauria: 08/27/15 07:35:16PM
sbhadauria
@sbhadauria
07/27/15 12:04:02PM
129 posts

Join Between two datastore


Jamroom Developers

I have two modules jrMedia and jrLicense. One media can have more then one license.
I want to get media items based on active license, there is license_date key in license datastore.

There is any way to join two datastores? Please response ASAP.
updated by @sbhadauria: 08/27/15 07:35:20PM
sbhadauria
@sbhadauria
04/22/15 10:54:52AM
129 posts

How to access jrCore_get_flag('my-custom-array') in tpl file


Jamroom Developers

I have created a global array in include.php file of my custom module

$tmp = array(
'one' => 'one',
'two' => 'two'
);
jrCore_set_flag('my-custom-array', $tmp);


Now I want to access this array in tpl file.

Please help.
updated by @sbhadauria: 05/22/15 11:38:40AM
sbhadauria
@sbhadauria
01/13/15 12:55:43AM
129 posts

Email Templates


Jamroom Developers

I want to send email as html on user signup, I don't want to change core files.
Please suggets.
sbhadauria
@sbhadauria
12/31/14 08:48:01PM
129 posts

Create new tool in jrProfile module


Jamroom Developers

How to create a new tool in jrProfile module from custom module. I don't want to modify core files.
updated by @sbhadauria: 01/31/15 10:16:51AM
sbhadauria
@sbhadauria
09/11/14 12:05:59AM
129 posts

Jplayer not working on android


Jamroom Developers

I have tested on jplayer 2.5.0 it is working fine on android but on latest jamroom update we are using jplayer 2.6.0 and it's fail on android.
updated by @sbhadauria: 09/11/14 12:22:08AM
  7